0

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

4

1 回答 1

2

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

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));
于 2017-06-02T12:34:46.023 回答