fetch(config.host+"url",{
method:"POST",
mode: 'cors',跨域请求
headers: {
'Content-Type': 'application/json'
},
body:JSON.stringify({
'id' : 'XXX'
})
}).then(response => response.json()).then(json => {})