在 Jquery 中加载 2 或模式 json 文件问题?
我正在尝试使用 json 和 jquery 加载一些数据,当我从 2 个文件调用数据时会出现问题,如下所示:
$.getJSON('json/profile.json', function(data) {
$('#online').html(data.todo );
});
$.getJSON('json/character.json', function(data) {
$('#offline').html(data.fname + " " + data.lname );
});
如果我只使用一个文件,它可以工作,但同时使用两个文件则不行。有线。
有什么想法吗?
谢谢
编辑: 我有这样的:我有一个 index.php 和 file1.php 和 file2.php 。
每个file1和file2都包含在index.php中,并且每个file1.php和file2.php调用一个json文件。
i am trying to load some data using json and jquery the problem occurs when i call data from 2 files like this:
$.getJSON('json/profile.json', function(data) {
$('#online').html(data.todo );
});
$.getJSON('json/character.json', function(data) {
$('#offline').html(data.fname + " " + data.lname );
});
if i use only one file it works, but with both doesnt. Wired.
any ideas?
thanks
edit:
i have them like this: i have an index.php and file1.php and file2.php .
each file1 and file2 are included in the index.php and each file1.php and file2.php call a json file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我打赌你每次都会按这个顺序执行它们。第一个方法有效,因为 JSON 格式正确,第二个方法失败,因为 JSON 格式错误。
$.getJSON
如果从服务器。I bet you execute them in that sequence every time. The first one works because the JSON is well-formed, the second one fails because the JSON is malformed.
$.getJSON
will fail silently if it gets bad JSON from the server.