wap2app 扫一扫能使用Barcode实现吗
JakeWarthon
- 发布:2019-11-16 15:05
- 更新:2019-11-16 16:13
- 阅读:991
wap2app 扫一扫能使用Barcode实现吗
分类:wap2app
JakeWarthon (作者)
我这边测试toast没出现
created() {
var statusBarHeight = uni.getSystemInfoSync().statusBarHeight;//状态栏
var height = statusBarHeight + 44 +104+'px';
var pages = getCurrentPages();
var page = pages[pages.length - 1];
// #ifdef APP-PLUS
uni.showToast({
title: 'APP-PLUS',
duration: 2000,
icon:'none'
});
var currentWebview = page.$getAppWebview();
this.barcode = plus.barcode.create('barcode', this.barcode, {
top: '0',
left: '0px',
width: '100%',
height: height,//这里可以设置扫码框的高度
position: 'static'
});
this.barcode.onmarked = this.onmarked;
currentWebview.append(this.barcode);
const res = uni.getSystemInfoSync();
if(res.platform == 'android'){//安卓机
this.barcode.start();
}
// #endif
// if(!barcode){
// barcode = plus.barcode.create('barcode', [plus.barcode.QR], {
// top:'100px',
// left:'0px',
// width: '100%',
// height: '500px',
// position: 'static'
// });
// barcode.onmarked = onmarked;
// plus.webview.currentWebview().append(barcode);
// }
// barcode.start();
},
JakeWarthon (作者)
我想问下我用uniapp打包成h5之后再打包成wap2app算appplus吗
2019-11-16 15:12
DCloud_heavensoft
回复 JakeWarthon: 算。但为什么要这样。uni-app直接发布的app体验才能更好的啊
2019-11-16 15:38
JakeWarthon (作者)
回复 DCloud_heavensoft: 因为我直接发布的app有问题那个功能只能在浏览器上能实现 但是发现现在扫码功能出现了问题
2019-11-16 15:41
JakeWarthon (作者)
回复 DCloud_heavensoft: 但是我在h5上测试plus is not defined
2019-11-16 15:43
JakeWarthon (作者)
回复 DCloud_heavensoft: 我想问下// #ifdef APP-PLUS这个约束下的plus在我这个方式下打包的apk能正常使用吗
2019-11-16 15:59
DCloud_heavensoft
回复 JakeWarthon: 可以
2019-11-16 16:05
JakeWarthon (作者)
回复 DCloud_heavensoft: 我发现扫码不行
2019-11-16 16:12
JakeWarthon (作者)
回复 DCloud_heavensoft: uniapp只能使用plus.barcode.create(对h5生效吗)
2019-11-16 17:11
JakeWarthon (作者)
回复 DCloud_heavensoft: 有个想法问下 可以使用weixinjsapi吗不开发公众号的情况下
2019-11-16 17:36