angular2或者4 jsonp 跨域报错 Uncaught SyntaxError:

testHttp(){

    const url = 'http://devadmin.smartyiliao.com.cn/patientmanage/wx/home/get'

    let params: URLSearchParams = new URLSearchParams();

    params.set('openId','oyCBlw8FrRZw9kA7TsYrUfQszu4k');

    params.set('callback', 'JSONP_CALLBACK');

    this.jsonp.get(url,{

        search:params

    })

    .map(res => {

        console.log(res)

        res.json()

    })

    .subscribe((response) => {

        console.log(response)

        this.httpRes = response

    }, (error) => {

        console.error(error);

    });

    //浏览器报错 Uncaught SyntaxError: Unexpected token : 但是我用jquery没问题

    

}

https://img2.mukewang.com/5c46cd7e00015f5e08000199.jpg

$.ajax({

    type:"get",

    dataType: "jsonp",

    url:pathApi+'/patientmanage/wx/home/get',

    data: {

        openId: openId

    },

    success: function(res) {

        console.log(res)

    }

});


慕尼黑5688855
浏览 464回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript