5/5
扩展简介
A extension that gives the html page cross-domain request capability.
API: crossRequest( options )
Example:
crossRequest({
url: 'http://caibaojian.com/ajax-jsonp.html',
method: 'GET',
success: function(res, header){
}
})
crossRequest({
url: 'http://127.0.0.1:3000/api',
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
data: {
a: 1,
b: 2,
c: {
t: 1
}
},
success: function (res) {
console.log(arguments)
}
})
发表评论