在 Jquery 中加载 2 或模式 json 文件问题?

发布于 2024-10-28 04:22:21 字数 480 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌若浮生 2024-11-04 04:22:21

我打赌你每次都会按这个顺序执行它们。第一个方法有效,因为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文