我正在使用dymojs
npm软件包将labesl打印到我的dymo打印机。
但是使用:
dymo.print('DYMO LabelWriter 4XL', labelXml);
其中第一个参数是我的打印机名称,第二个参数是我的XML,不返回任何内容,标签也不打印。它甚至不返回错误消息。
但是请查看github中该库的代码:
return fetcher(`${this.apiUrl}/PrintLabel`,
{
method: 'POST',
body: label,
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
})
.then((response) => response.text())
.then((result) => result);
}
表示应该恢复某种结果。
我知道所有设置对我来说都是正确的,因为我可以轻松地从this网站打印标签: