Skip to content
Advertisement

Getting parse error while fetching text file content in JQuery

I am trying to fetch data from text file which resides on server. I have access of that location and able to see content when I put URL in browser tab. I am trying to make AJAX call and get file content, but I am getting Error: Uncaught SyntaxError: Unexpected identifier

Code

JavaScript

enter image description here

on console, enter image description here

I tried below code too, but same result,

JavaScript

This code is always going into error block.

Advertisement

Answer

You said:

JavaScript

But the URL is responding with:

Deployment automatically finished…

Which is not JSONP, it is plain text.

You get the error when it tries to execute the plain text as JSONP.

Don’t put wrong information in the dataType field.


JavaScript

That’s deprecated. Don’t use it. It’s also pointless since you are using callbacks.

It’s also incompatible with JSONP so it is ignored (until you remove the incorrect dataType).


crossDomain: true,

This has no effect unless you are making a:

  • non-JSONP request
  • to the same origin
  • which gets redirected to a different origin

… which is very rare.


JavaScript

Access-Control-Allow-Origin is a response header. It doesn’t belong the request. Trying to add it to the request will cause extra problems as it will make the request preflighted.

(At least, that would be the case if you hadn’t said dataType: 'jsonp' because adding request headers is incompatible with JSONP).


All you need on the client

The only code you need on the client is:

JavaScript

The server you are requesting the data from will need to use CORS to grant you permission to access it if it is a cross-origin request.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement