moduleLabelPrinter
来自于:开发者立即使用
requestPermission printerUsb initPrint printerLabel disconnect ScanBluetooth
概述
佳博标签打印机
这款应用实现了佳博标签打印机的功能,支持USB连接打印机有GP-3120TN,GP-3120TU等。还可支持蓝牙连接便携式标签打印机如ZH280,380,Q80等
注意
使用该模块时需要使用升级后的编译环境,请在云编译的时候勾选“使用升级环境编译”,并且在控制台 “高级设置” 中将固件版本设置为5.0或以上
requestPermission
获取打印机设备权限
requestPermission(callback(ret, err))
callback(ret)
ret:
- 类型:JSON对象
- 内部字段:status 布尔型
{
status: true, //false
}
示例代码
var demo = api.require('moduleLabelPrinter');
demo.requestPermission(function(ret, err) {
alert(JSON.stringify(ret));
});
可用性
Android系统
可提供的1.0.0及更高版本
printerUsb
获取打印机设备信息
printerUsb(callback(ret, err))
callback(ret)
ret:
- 类型:JSON对象
- 内部字段:status 布尔型
{
status: true, //false
}
示例代码
var demo = api.require('moduleLabelPrinter');
demo.printerUsb(function(ret, err) {
alert(JSON.stringify(ret));
});
可用性
Android系统
可提供的1.0.0及更高版本
initPrint
初始化
initPrint(callback(ret, err))
params
- 类型:字符串
- 描述:初始化类型
内部字段:
type:'usb',//bluetooth 类型为bluetooth还是usb
address:'DC:0D:30:71:8A:65'//类型为bluetooth时必须传 入这个参数
callback(ret)
ret:
- 类型:JSON对象
- 内部字段:status 布尔型
{
status: true, //false
}
示例代码
var demo = api.require('moduleLabelPrinter');
demo.initPrint({
type:'usb',//bluetooth
address:'DC:0D:30:71:8A:65'
},function(ret, err) {
alert(JSON.stringify(ret));
});
可用性
Android系统
可提供的1.0.0及更高版本
printerLabel
打印标签
printerLabel({params}, callback(ret, err))
params
data:
- 类型:JSON 对象
- 描述:(必填项)打印数据
内部字段:
[{
barCode:'123321',//要打印的条码
name:'要打印的汉字',
price:3.4,//要打印的价格
vipPrice:2.2,//要打印的会员价格
labeldate:'2018-09-07',//要打印的日期
endnotes:'这是标签尾注的声明',
number:1//要打印的数量
}]
callback(ret)
ret:
- 类型:JSON对象
- 内部字段:result 为返回结果各参数可参考以上参数
{
status: true, //false
print:"打印完毕"
}
示例代码
var demo = api.require('moduleLabelPrinter');
demo.initPrint({
data : [
{
barCode:'1232424323',
name:'汉朝新零售汉朝新零售汉朝新',
price:2.39,
vipPrice:1.48,
labeldate:'2018-09-07',
endnotes:'这是标签尾注的声明',
number:1
},{
barCode:'12334212393',
name:'天猫超市',
price:2.39,
vipPrice:1.43,
labeldate:'2018-09-07',
endnotes:'这是标签尾注的声明',
number:1
}
]
},function(ret, err) {
alert(JSON.stringify(ret));
});
可用性
Android系统
可提供的1.0.0及更高版本
disconnect
断开蓝牙连接
disconnect(callback(ret, err))
callback(ret)
ret:
- 类型:JSON对象
- 内部字段:status 布尔型
{
status: true, //false
}
示例代码
var demo = api.require('moduleLabelPrinter');
demo.disconnect(function(ret, err) {
alert(JSON.stringify(ret));
});
可用性
Android系统
可提供的1.0.0及更高版本
ScanBluetooth
扫描蓝牙设备
ScanBluetooth(callback(ret, err))
callback(ret)
ret:
- 类型:JSON对象
- 内部字段:status 布尔型
{
status: true, //false
msg://返回json蓝牙设备信息
}
示例代码
var demo = api.require('moduleLabelPrinter');
demo.ScanBluetooth(function(ret, err) {
alert(JSON.stringify(ret));
});
可用性
Android系统
可提供的1.0.0及更高版本