beforeCreate() {
if(window.plus) {
plusReady();
} else {
document.addEventListener('plusready', plusReady, false);
}
function plusReady() {
alert('获取通道');//执行
// 获取支付通道
plus.payment.getChannels(function(channels) {
alert(JSON.stringify(channels));
}, function(e) {
alert('获取支付通道失败:' + e.message);//不执行
});
}
},
created() {
},
想要获取支付通道,但是一直无法执行,
放在vue的beforeCreate生命周期不执行,哪位大神有好的方法,请指点下
1 个回复
8***@qq.com
怎么解决的?