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