我正在尝试使用Java插件从浏览器将原始打印打印到票证打印机。我已经用HTML和Javascript编写了一个测试程序,该程序工作正常,但现在我正尝试将代码传输到php脚本中,以便在更大的应用程序中打印票证。每当我从应用程序调用函数时,我都会在firefox调试中遇到这种错误。 “ TypeError:qz.findPrinter不是函数”。

我将原始测试程序的扩展名从.html更改为.php,现在我也收到错误消息。

Java中的所有函数都以“ qz”开头。

这是供参考的插件
https://code.google.com/p/jzebra/wiki/TutorialWebApplet

我认为这是我不了解php的东西,因为它可以作为.html文件正常工作,但是无论如何我都包含了整个脚本。 php从xampp运行。

谢谢您的时间。

<html>

<head><title>Receipt Test</title>
<script type="text/javascript" src="js/deployJava.js"></script>
<script type="text/javascript">
deployQZ();

function deployQZ() {
    var attributes = {id: "qz", code:'qz.PrintApplet.class',
        archive:'qz-print.jar', width:1, height:1};
    var parameters = {jnlp_href: 'qz-print_jnlp.jnlp',
        cache_option:'plugin', disable_logging:'false',
        initial_focus:'false'};
    if (deployJava.versionCheck("1.7+") == true) {}
    else if (deployJava.versionCheck("1.6+") == true) {
        attributes['archive'] = 'jre6/qz-print.jar';
        parameters['jnlp_href'] = 'jre6/qz-print_jnlp.jnlp';
    }
    deployJava.runApplet(attributes, parameters, '1.5');
}

function countSpace(product, price, section)    {
var spaceNeeded = (section - product.length - price.toString().length);
var spaces = "";
for(i=0; i < spaceNeeded; i++) {
spaces += " ";
    }
return (product + spaces + price);
}

function findPrinter() {
     // Searches for locally installed printer with "zebra" in the name
     qz.findPrinter("zebra");


     // Hint:  Carriage Return = \r, New Line = \n, Escape Double Quotes= \"


    var ticketTime = new Date();
    var singleLine = "\n------------------------------------------\n";
    var doubleLine = "\n==========================================\n";
    var product = ["Mirdan Tuzlama", "Suckuklu Pide" ];
    var price = [8.00, 8.00];
    var prodCharLength = 37;
    var finCharLength = 42;
    var subTotal = {name:"Subtotal", value:0};

    for(i=0;i<product.length;i++) {
    subTotal.value += price[i];
    }

    var tax = {name:"Tax", value:((20/100)*subTotal.value)};
    var total = {name:"Total", value:(subTotal.value-tax.value)};
    var ticketEnd = "                Thank You\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
    var productSec = "";
    tax.value = 0 - tax.value;
    for(j=0;j<product.length;j++) {
    var priceloop = price[i];
    productSec += (" - 1 " + countSpace(product[j], price[j],prodCharLength));
        if (j<=(product.length-2)){
        productSec += "\n"
        }
    }


    qz.append("\nDate:" + ticketTime.getDate() + "/"
                        + (ticketTime.getMonth()+1) + "/"
                        + ticketTime.getFullYear()
            + "\nTime:" + ticketTime.getHours() + ":"
                        + ticketTime.getMinutes()
            + "\nTable: B10\nTicket No:2"
            //+ singleLine + " - 1 " + product1 +"                   8.00\n - 1 " + product1 +"                    8:00"
            + singleLine + productSec
            + doubleLine + countSpace(subTotal.name, subTotal.value,finCharLength)
            + '\n' + countSpace(tax.name, tax.value,finCharLength)
            + '\n' + countSpace(total.name, total.value,finCharLength)
            + doubleLine + ticketEnd);

    qz.print();

}
</script>

<body>

<input type="button" onClick="findPrinter()" value="Print ESCP" /><br />
</body>

最佳答案

“ TypeError:qz.findPrinter不是函数”



在QZ“任务栏” 1.9(桌面应用程序)中,qz.findPrinter(...)被定义为preemptive函数created by qz-websocket.js,并且必须包含在要公开的项目中。如果您不包括qz-websocket.js,则会出现此消息。
在QZ“ Print” 1.9(Java Applet)及更低版本中,qz.findPRinter(...)通过使用Java LiveConnect调用的Java Applet公开,因此这是该Applet无法加载的标志。如果您的小程序未正确加载,则会出现此消息。


注意:1.9既可以充当桌面应用程序,又可以充当Java小程序。

弃用警告:1.9及更低版本为EOL。 QZ Tray 2.0及更高版本中,API发生了显着变化。迁移指南为available

10-05 20:38