告诉我如何从 Yii2 中的 JSON 文件获取 js 中的数据,该文件与 js 文件位于同一文件夹中,这样做但给出了错误(404):
var jsonResponse = $.getJSON( "test.json");
console.log(jsonResponse);
告诉我如何从 Yii2 中的 JSON 文件获取 js 中的数据,该文件与 js 文件位于同一文件夹中,这样做但给出了错误(404):
var jsonResponse = $.getJSON( "test.json");
console.log(jsonResponse);
值得尝试这种设计:
$.getJSON("json.js", function(json){ alert("JSON 数据:" + json); });
并阅读:https ://javascript.ru/forum/jquery/17308-poluchenie-json.html
尝试在脚本标签中的html文件中包含json,并在js中:
varmydata = JSON.parse(data); 警报(mydata[0].name);
问题已解决,我必须这样做
或使用 urlHelper 生成正确的 url
或者也许只是?
在访问同一目录中的文件的意义上,通常