


Detailed explanation of the steps to receive josn data using josnp in ajax
Mar 30, 2018 pm 04:43 PMThis time I will give you a detailed explanation of the steps for using josnp to receive josn data in ajax. What are the precautions for using josnp to receive josn data in ajax. The following is a practical case, let's take a look.
Recently, I encountered a problem when checking the Express web page. The api of Express 100 was called, but the Express 100 api did not allow cross-domain requests, so 127.0 was used. Requests sent by 0.1 will be intercepted directly.
It’s just a simple web page. I don’t want to do the server forwarding myself, so I finally found a jsonp proxy provided by yahoo:
http://query.yahooapis.com /v1/public/yql
var queryUrl = "\"http://www.kuaidi100.com/query?type=" + $("#type").val() + "&postid=" + $("#postid").val() + "\""; $.ajax({ url: 'http://query.yahooapis.com/v1/public/yql', //jsonp代理api dataType: "jsonp", data: { q: "select * from json where url=" + queryUrl, format: "json" }, success: function(result) { var res = result.query.results.json; console.log(res); } }, }) });
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
ajax combined with mysql database to achieve partial data refresh
Security performance of Web and AJAX
The above is the detailed content of Detailed explanation of the steps to receive josn data using josnp in ajax. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to solve the 403 error encountered by jQuery AJAX request

How to solve jQuery AJAX request 403 error

How to get variables from PHP method using Ajax?

How to solve the problem of jQuery AJAX error 403?

PHP vs. Ajax: Solutions for creating dynamically loaded content

Understanding Ajax Frameworks: Explore Five Common Frameworks

Asynchronous data exchange using Ajax functions
