关于querystring的疑问、
为什么使用querystring.parse(postData).text 得到的是UNDEFINE? 如果querystring.parse(postData) 是 {text:content} ,两个project,这个是什么意思?
2 回复
querystring.parse(postData)[“text”] 试试。
看看 querystring.parse(postData) 有没有 text 在里面
console.log(querystring.parse(postData));