关于querystring的疑问、
发布于 11 年前 作者 ggaaooppeenngg 3822 次浏览 最后一次编辑是 8 年前

为什么使用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));
回到顶部