如何将有效负载添加到coap请求node-coap

时间:2017-06-01 14:41:11

标签: javascript node.js node-modules coap

我正在使用node-coap(https://github.com/mcollina/node-coap)来发送Coap数据包,现在我正在尝试发布或发送带有效负载的请求,但我还不知道如何添加有效负载来请求。我必须使用什么方法或属性来插入有效负载?

1 个答案:

答案 0 :(得分:1)

他们的回购中有一个例子:

https://github.com/mcollina/node-coap/blob/master/examples/req_with_payload.js

var req = coap.request('coap://localhost/Matteo')

var payload = {
  title: 'this is a test payload',
  body: 'containing nothing useful'
}

req.write(JSON.stringify(payload));