执行asp.net core 2.1应用程序时,在firefox浏览器的控制台选项卡中出现以下错误:在“网络”选项卡中显示为400错误的请求。
Firefox can’t establish a connection to the server at ws://localhost:58330/sockjs-node/775/15qeeqvw/websocket.
我相信我的meta标签缺少一些与CSP相关的条目,但不确定是哪个条目。以下是我的csp元标记:
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' http://localhost:58330/ 'unsafe-eval'; connect-src 'self' 'unsafe-eval'; img-src 'self'; style-src 'self' 'unsafe-inline';">
有人可以帮忙吗?
谢谢, 赫曼特。