Node.js-----使用express写接口( 二 )


调用$.ajax(),提供JSONP的配置请求,从而发起JSONP请求
【Node.js-----使用express写接口】$("#btnJSONP").on("click", function () {$.ajax({type: "GET",url: "http://127.0.0.1/api/jsonp",dataType: "jsonp",success: function (res) {console.log(res);},});});