request 发送请求感觉多了个JSON.stringify
var options = {
method: 'POST',
url: '***',
headers: {
'Content-Type': 'text/plain'
},
json: true,
body: "1798612312"
}
body会变成’"1798612312"’,就像多了个JSON.stringify
var options = {
method: 'POST',
url: '***',
headers: {
'Content-Type': 'text/plain'
},
json: true,
body: "1798612312"
}
body会变成’"1798612312"’,就像多了个JSON.stringify