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

最佳答案

他们的仓库中有一个例子:

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));

09-25 22:29