gpt4 book ai didi

javascript - 响应中 'Access-Control-Allow-Origin' header 的值不能是 azure 函数和 javascript 中的通配符 '*'

转载 作者:行者123 更新时间:2023-12-01 21:22:47 26 4
gpt4 key购买 nike

<分区>

您好,我正在使用 c# azure 函数和 java 脚本。我有在本地运行的网页,也在本地运行 azure 功能。下面是我的 azure 函数,它运行在

negotiate: [POST] http://localhost:7071/api/negotiate

[FunctionName("negotiate")]
public static async Task<SignalRConnectionInfo> Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "post")] HttpRequest req, IBinder binder,
ILogger log)
{
log.LogInformation("C# HTTP trigger function processed a request.");
var data = await Authenticated(req, log);
var connectionInfo = binder.Bind<SignalRConnectionInfo>(new SignalRConnectionInfoAttribute { HubName = "MapUpload", UserId = data });
return connectionInfo;
}

然后在local.settings.json里我配置好了

 "Host": {
"CORS": "*"
}

下面是我的 java 脚本代码。

 <script>
const connection = new signalR.HubConnectionBuilder()
.withUrl('http://localhost:7071/api/')
.configureLogging(signalR.LogLevel.Information)
.build();

connection.on('MapUpload', productOrdered);
connection.onclose(() => console.log('disconnected'));

console.log('connecting...');
connection.start()
.then(() => data.ready = true)
.catch(console.error);
</script>

当我运行我的 javascript 应用程序时,出现以下错误

从来源“http://localhost:3872”访问位于“http://localhost:7071/api/negotiate”的 XMLHttpRequest 已被 CORS 策略阻止:对预检请求的响应未通过访问控制检查:当请求的凭据模式为“include”时,响应中“Access-Control-Allow-Origin” header 的值不得为通配符“*”。 XMLHttpRequest 发起的请求的凭据模式由 withCredentials 属性控制。

我添加了 "CORS": "*"但仍然出现上述错误。所以我可以知道上面的代码中是否缺少配置。有人可以帮助他们理解这个问题吗?任何帮助将不胜感激。谢谢

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com