“格式不正确”通过 jQuery.ajax 在 Firefox 中加载客户端 JSON 时出现警告
我正在使用 jQuery 的 ajax 方法来获取静态 JSON 文件。数据是从本地文件系统加载的,因此没有服务器,所以我无法更改 MIME 类型。
这在 Safari 中工作正常,但 Firefox (3.6.3) 报告该文件“格式不正确”。我知道并查看了 Stack Overflow 上的类似帖子:
使用 XMLHttpRequest 加载 JSON 文件时在 Firefox 中出现“格式不正确”错误
我相信我的 JSON 格式良好:
{
"_": ["appl", "goog", "yhoo", "vz", "t"]
}
我的 ajax 调用很简单:
$.ajax({
url: 'data/tickers.json',
dataType: 'json',
async: true,
data: null,
success: function(data, textStatus, request) {
callback(data);
}
});
如果我用 a 包装 JSON文档标签:
<document>JSON data</document>
正如上面提到的另一个堆栈溢出问题中提到的,ajax 调用失败并出现解析错误。
那么:有没有办法在读取客户端 JSON 文件时避免 Firefox 警告?
I am using jQuery's ajax method to acquire a static JSON file. The data is loaded from the local file system, hence there is no server, so I can't change the MIME type.
This works fine in Safari, but Firefox (3.6.3) reports the file to be "not well-formed". I am aware of, and have reviewed, a similar post here on Stack Overflow:
"not well-formed" error in Firefox when loading JSON file with XMLHttpRequest
I believe my JSON is well-formed:
{
"_": ["appl", "goog", "yhoo", "vz", "t"]
}
My ajax call is straightforward:
$.ajax({
url: 'data/tickers.json',
dataType: 'json',
async: true,
data: null,
success: function(data, textStatus, request) {
callback(data);
}
});
If I wrap the JSON with a document tag:
<document>JSON data</document>
as was mentioned in the other Stack Overflow question referenced above, the ajax call fails with a parse error.
So: is there a way to avoid the Firefox warning when reading in client-side JSON files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有时不能选择使用 HTTP 服务器,这可能意味着不会自动为某些文件提供 MIME 类型。改编自 Peter Hoffman 对 jQuery .getJSON Firefox 3 语法错误未定义的回答,在进行任何 $.getJSON() 调用之前使用此代码:
或者,如果您使用 $.ajax():
Sometimes using an HTTP server is not an option, which may mean that MIME types won't be automatically provided for some files. Adapted from Peter Hoffman's answer for jQuery .getJSON Firefox 3 Syntax Error Undefined, use this code before you make any $.getJSON() calls:
Or, if you're using $.ajax():
本地文件和脚本不能混合。 方式涉及太多浏览器安全问题和其他奇怪的事情。如果你想测试一些东西,你应该通过 HTTP 服务器运行你的东西。在本地安装一个可能是一个好主意。
Local files and scripting don't mix. Way too much browser security stuff and other weirdness involved. If you want to test things, you should run your stuff through a HTTP server. Installing one locally might be a good idea.