简体   繁体   中英

Why does my JSONP request give me Uncaught SyntaxError: Unexpected token < (less than)?

Following is my xmlfile

applica.luminoustec.net/file.xml

I need to access with this ajax call from my local host, all about is cross domain call

My AJAX CODE

<script type="text/javascript">
        $(document).ready(function () {

            $.ajax({
                url: "http://applica.luminoustec.net/file.xml",
                dataType: "jsonp",
                success: function (data) {
                    console.log(data);
                }
            });
        });
    </script>

following is the error

Uncaught SyntaxError: Unexpected token <

can anyone tell where i am at fault

i see this link and this link

but not succeded please help me out

http://applica.luminoustec.net/file.xml is XML.

dataType: "jsonp", tells jQuery to parse it as JSONP.

XML is not JSONP. Thus, it errors.

Either:

  1. Change the URL to one which returns JSONP or
  2. Remove the dataType line and let jQuery detect it as XML (NB: This will probably require that you set up CORS support on the server).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM