Heim > Fragen und Antworten > Hauptteil
getUser: function (sessionId) {
fetch('/account_auth_admin_new_test/personal-api.accessLogin', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
sessionId: sessionId,
enterpriseCode: "SUNEEE",
clientIp: "127.0.0.1",
encryptCode:"1234567899876543",
appCode: "XIANGPU"
})
}).then(function(res){
console.log(res.json())
}).then(function(err){
console.log('错误',err)
})
}
Fetch-Modul: https://github.com/github/fetch
大家讲道理2017-05-19 10:50:09
getUser: function (sessionId) {
fetch('/account_auth_admin_new_test/personal-api.accessLogin', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
sessionId: sessionId,
enterpriseCode: "SUNEEE",
clientIp: "127.0.0.1",
encryptCode:"1234567899876543",
appCode: "XIANGPU"
})
}).then(function(res){
return res.json()
}).then(function(json) {
console.log('parsed json', json)
}).catch(function(ex) {
console.log('parsing failed', ex)
}).then(function(err){
console.log('错误',err)
})
}