gpt4 book ai didi

tomcat - 请求未通过访问控制检查 : No 'Access-Control-Allow-Origin' header is present on the requested resource

转载 作者:行者123 更新时间:2023-11-28 22:06:12 27 4
gpt4 key购买 nike

<分区>

我在示例应用程序中使用了 backbonejs。以前,我在 nodejs 上托管它,但现在想在 tomcat 上运行它,但此更改在客户端浏览器上给我一个错误。我搜索并发现要解决此问题,必须将 crossdomain ( https://stackoverflow.com/a/33820700/5086633) 设置为 true。不确定我应该如何处理这个问题。非常感谢在这方面的任何帮助。

   XMLHttpRequest cannot load http://localhost:8080/backbonejs/testpost. 
Response to preflight request doesn't pass access control check:
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'null' is therefore not allowed access. The response
had HTTP status code 403.

使用 ajaxPrefilter、模型和集合如下。

$.ajaxPrefilter( function( options, originalOptions, jqXHR ) {
options.url = 'http://localhost:8080/backbonejs' + options.url;
});
var Banks = Backbone.Collection.extend({
url: '/testpost'
});

var Bank = Backbone.Model.extend({
urlRoot: '/testpost'
});

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