读取JSON要点作为查询字符串

时间:2017-02-04 22:10:13

标签: javascript jquery html json query-string

我目前有一个包含三个文件的Javascript应用程序:

index.html
app.js
input.json

app.js文件会多次引用input.json文件,以便将内容呈现为index.html文件中的div。

我想这样做,以便在http://example.com/myapp加载我的index.html可以将外部托管的JSON作为app.js的源代码来读取,例如myexample.com/myapp?myhost.com/files/ input.json。

有人可以告诉我如何让这个工作吗?

1 个答案:

答案 0 :(得分:0)

为此,您需要在myexample.com上启用CORS

假设您正在使用jQuery。 (如果您不想将jQuery用于ajax请求,请查看here

$.get('http://myexample.com/myapp?myhost.com/files/input.json')
.done(function(data) {
    // use external 'data' here.
})
.fail(function() {
    // handle error here
});