可能重复:
XmlHttpRequest error: Origin null is not allowed by Access-Control-Allow-Origin
我尝试过使用js,ajax,jquery从url读取xml数据的不同方法,但是没有用。
我收到的错误如下:
XMLHttpRequest无法加载“http://api.simplyhired.com/a/jobs-api/xml-v2/q-java?pshid=46484&ssty=2&cflg=r&jbd=nichehire.jobamatic.com&clip=183.82.97.123”。 Access-Control-Allow-Origin不允许原点http://www.nichehire.com。
我是否需要在请求网址时添加请求标头。
如果是这样,我如何在请求时添加请求标头,
是否需要遵循从URL获取XML数据的步骤。
可以是一个请使用您的代码尝试使用此URL来读取XML数据,并在可能的情况下告诉我
我试过下面的代码
$.ajax({
type: "GET",
url: "http://api.simplyhired.com/a/jobs-api/xml-v2/q-java?pshid=46484&ssty=2&cflg=r&jbd=nichehire.jobamatic.com&clip=183.82.97.123",
dataType: "xml",
success: function(xml) {
alert(xml);
}});