以下代码运行良好。
request
.post(url)
.query(query)
.end(cb); // The callback will be called with parameters err and res
但是当我将.query()更改为.send()以将输入值作为form-data而不是query-string-parameters传递时,请求方法从POST更改为OPTIONS并生成可能来自于浏览器(Chrome)在将请求发送到服务器之前。
request
.post(url)
//.query(query)
.send({"a":"a"})
.end(cb); // The callback will be called with parameters err and res
请帮我解决问题。 提前谢谢!