2

我有DATECS DPP-250 POS 打印机,我正在尝试使用 WebUSB API 连接它并打印一些数据。我遇到的问题是打印不起作用。我可以连接到设备并且 chrome 可以很好地读取它,但是当我提交打印时(transferOut)打印机只是挂起。我试图在控制台中调试错误,但我没有任何错误。我尝试在 MAC OS 和 Windows 10 上使用 WinUSB 驱动程序(使用Zadig在 Windows上更改驱动程序),它们都有同样的问题。

有人知道问题出在哪里吗?

编辑:

我尝试使用其他 POS 打印机(非蓝牙打印机),我的代码运行良好。唯一的问题是这台打印机。这种类型的打印机使用微型 USB,所以这可能是一个问题?

这是我正在使用的代码

<html>
<body>
    <textarea id="printContent"></textarea>
    <input type="submit" onclick="connectAndPrint()" value="Print"/>
    <P>Type text into box and click on submit button.
    <script>
    var device;

    function setup(device) {
        return device.open()
        .then(() => device.selectConfiguration(1))
        .then(() => device.claimInterface(device.configuration.interfaces[0].interfaceNumber))
    }

    function print() {
        var string = document.getElementById("printContent").value + "\n";
        var encoder = new TextEncoder();
        var data = encoder.encode(string);
        console.log(data.length);
        device.transferOut(device.configuration.interfaces[0].alternate.endpoints[0].endpointNumber, data)
        .catch(error => { console.warn(error); })
    }

    function connectAndPrint() {
        console.log(device);
        if (device == null) {
            navigator.usb.requestDevice({ filters: [{ vendorId: 5380 }, { vendorId: 65520 }] })
            .then(selectedDevice => {
                device = selectedDevice;
                console.log(device.configuration);
                return setup(device);
            })
            .then(() => print())
            .catch(error => { console.log(error); })
        }
        else
            print();
    }

    navigator.usb.getDevices()
    .then(devices => {
        if (devices.length > 0) {
            device = devices[0];
            return setup(device);
        }
    })
    .catch(error => { console.log(error); });

    </script>
</body>
</html>
4

1 回答 1

0

您需要在服务器上运行它,例如使用 :xampp 或 node js。我之前尝试过使用单个 html 它不起作用,但我放在服务器上它会起作用

于 2019-04-27T15:52:04.857 回答