我正在使用Phonegap而我想使用这个m 插件:this tutorial
当我尝试使用此插件时,不幸的是控制台打印了这些信息:
Uncaught ReferenceError: BTPrinter is not defined
但如果我使用cmd并检查插件:...转到app文件夹并输入phonegap plugin list
我明白了:cordova-plugin-bluetooth-printer 0.0.1-dev "BluetoothPrinter"
你知道哪里有问题吗?
confix.xml:
`<gap:plugin name="cordova-plugin-bluetooth-printer" />`
谢谢!
答案 0 :(得分:0)
更新: 如果我尝试通过build.phonegap.com构建:
@Override
public void onCreate(Bundle savedInstanceBundle) {
super.onCreate(savedInstanceBundle);
mBill = new Bill();
}
@Override
public View onCreateView(
LayoutInflater inflater,
ViewGroup parent,
Bundle savedInstanceBundle) {
View view = inflater.inflate(R.layout.bill_details, parent, false);
mBillTitle = (TextView) view.findViewById(R.id.bill_title);
mBillTitle.setText(mBill.getmShortTitle());
...
return view;
}