我正在尝试使用以下方法调用远程URL时获得状态/响应:
return this.http.jsonp('https://id.atlassian.com/profile/profile.action', 'callback').subscribe(data=>{
console.log('data ', data)
}, error=>{
console.log('error ', error)
})
但是我遇到以下错误:
注入JSONP的脚本未调用回调
P.S我正在使用jsonp绕过CORS错误。
实时回购: