我正试图用这样的ChaiHttp发布一个对象数组:
agent.post('route/to/api')
.send( locations: [{lat: lat1, lon: lon1}, {lat: lat2, lon: lon2}])
.end (err, res) -> console.log err, res
它返回如下错误:
TypeError: first argument must be a string or Buffer at ClientRequest.OutgoingMessage.end (_http_outgoing.js:524:11) at Test.Request.end (node_modules/superagent/lib/node/index.js:1020:9) at node_modules/chai-http/lib/request.js:251:12 at Test.then (node_modules/chai-http/lib/request.js:250:21)
events.js:141 扔掉//未处理的'错误'事件 ^
错误:Zlib._handle.onerror上的标头检查不正确 (zlib.js:363:17)
我也试着像这样发帖,就像我们对邮递员一样:
agent.post('route/to/api')
.field( 'locations[0].lat', xxx)
.field( 'locations[0].lan', xxx)
.field( 'locations[1].lat', xxx)
.field( 'locations[2].lat', xxx)
.then (res) -> console.log res
但是payload.locations是未定义的。
知道如何通过chai-http发布对象数组吗?
修改
这是我的路线,我认为流有效负载存在问题:
method: 'POST'
path:
config:
handler: my_handler
payload:
output: 'stream'
答案 0 :(得分:3)
我在这里有同样的问题。看来简单的chai-http文档是错误的。它是sais:
// Send some Form Data
chai.request(app)
.post('/user/me')
.field('_method', 'put')
.field('password', '123')
.field('confirmPassword', '123')
哪个不起作用。这对我有用:
chai.request(app)
.post('/create')
.send({
title: 'Dummy title',
description: 'Dummy description'
})
.end(function(err, res) { ... }
答案 1 :(得分:2)
尝试使用.send({locations: [{lat: lat1, lon: lon1}, {lat: lat2, lon: lon2}]})
。因为.field('a', 'b')
无效。
body
作为表单数据
.put('/path/endpoint')
.type('form')
.send({foo: 'bar'})
// .field('foo' , 'bar')
.end(function(err, res) {}
// headers received, set by the plugin apparently
'accept-encoding': 'gzip, deflate',
'user-agent': 'node-superagent/2.3.0',
'content-type': 'application/x-www-form-urlencoded',
'content-length': '127',
body
为application/json
.put('/path/endpoint')
.set('content-type', 'application/json')
.send({foo: 'bar'})
// .field('foo' , 'bar')
.end(function(err, res) {}
// headers received, set by the plugin apparently
'accept-encoding': 'gzip, deflate',
'user-agent': 'node-superagent/2.3.0',
'content-type': 'application/json',
'content-length': '105',
答案 2 :(得分:0)
面对同样的问题,我的解决方案不是将JSON对象用于send方法,而是使用原始字符串:
chai.request(uri)
.post("/auth")
.set('content-type', 'application/x-www-form-urlencoded')
.send(`Login[Username]=${validUser1.username}`)
.send(`Login[Password]=${validUser1.password}`)
.send(`RememberMe=false`)
.end((err, res) => {
res.should.have.status(200);
// ...
});