开发者

jQuery $.get from local directory producing different behaviour in IE vs FF, Chrome

I have the following simple jQuery:

 $.get('Data.csv', function(data) {

    alert(data);

 });

Data.csv is stored in the same folder as the html file which accesses it.

If I run this in all browsers when the url is a domain (i.e. www.mysite.com/path/to/file), then the alert will display a string value of the contents of Data.csv.

If I create a hosts file link to the local folder (i.e. host.mysite.com/path/to/file) then alert will display a string value of the contents of Data.csv in all browsers.

If I run this in IE 9 when the url opens the file locally (i.e c:\path\to\file) then the alert will display a string value of the contents of Data.csv.

However, if I run开发者_开发问答 this in FF or Chrome when the url opens the file locally (i.e file:///c:/path/to/file) then the alert will display [object XMLDocument].

Does anyone know why this is and how to open the local file as a string in FF and Chrome?

n.b. - I have tested this in order to rule out cross-platform-security issues. I don't think that that is the cause because otherwise it would not assign the content of the csv file at all.

Thanks in advance.


You're running into issues with the Same Origin Policy. If you look into your browser's console, you'll see something along the lines of Origin null is not allowed by Access-Control-Allow-Origin.

There's two possible fixes:

  1. Run your stuff on a local web server like XAMPP, MAMP or the like.

  2. Disable all web security on Chrome Startup, which you obviously don't want to do in real life. Wouldn't work in FF, either. So, stick with 1. ;)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜