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模块:https://github.com/github/fetch