将 signalr 集成到 asp.net core mvc 程序的时候,按照官方 demo 配置完成,但使用 demo 页面创建链接一直提示以下信息。html
1
|
access to xmlhttprequest at
'http://localhost:8090/signalr-mychathub/negotiate'
from origin
'null'
has been blocked by cors policy: response to preflight request doesn
't pass access control check: the value of the '
access-control-allow-origin
' header in the response must not be the wildcard '
*
' when the request'
s credentials mode
is
'include'
. the credentials mode of requests initiated by the xmlhttprequest
is
controlled by the withcredentials attribute.
|
原始代码:mvc
1
2
3
4
5
6
7
8
9
10
|
services.addcors(op =>
{
op.addpolicy(monitorstartupconsts.defaultcorspolicyname,
set
=>
{
set
.allowanyorigin()
.allowanyheader()
.allowanymethod()
.allowcredentials();
});
});
|
出现该问题的缘由是因为 cors 策略设置不正确形成的,原始设置我是容许全部 origin 来源。可是因为 dotnetcore 2.2 的限制,没法使用 allowanyorigin()
+ allowcredentials()
的组合,只能显式指定 origin 来源,或者经过下述方式来间接实现。cors
更改 cors 相关配置,在 corspolicybuilder
提供了一个方法用于配置验证逻辑。该方法名字叫作 setisoriginallowed(func<string, bool> isoriginallowed)
,这个委托会验证传入的 origin 源,若是验证经过则返回 true
。asp.net
在这里咱们只须要将其设置为一直返回 true
便可。
最终代码以下:ui
1
2
3
4
5
6
7
8
9
10
|
services.addcors(op =>
{
op.addpolicy(monitorstartupconsts.defaultcorspolicyname,
set
=>
{
set
.setisoriginallowed(origin =>
true
)
.allowanyheader()
.allowanymethod()
.allowcredentials();
});
});
|