我正在尝试使用CORS
制作JONSP
。我尝试此操作的网站在我的计算机上本地运行,该文件存储在我的磁盘本地。
我尝试使用和不启动Simple-Web-Server python -m SimpleHTTPServer
。没有结果。
多数民众赞成我尝试过的。资料来源:https://dev.socrata.com/docs/cors-and-jsonp.html
$.ajax({
url: "path/to/file.json",
method: "GET",
dataType: "json",
success: function( data, status, jqxhr ){
console.log( "Request received:", data );
},
error: function( jqxhr, status, error ){
console.log( "Something went wrong!" );
}
});
修改
根据建议,此问题与this问题重复。我不会说这是重复的,因为OP询问ajax
是否是正确的工具。我认为我的问题ajax
是正确的工具,但显然我正在实施它错误......(或者它可能不是正确的工具)。