从写了测试工程
mui.init();
document.addEventListener('DOMContentLoaded', function() {
var displayArea = document.getElementById('displayArea');
alert(displayArea.nodeName);
document.addEventListener('plusready', function() {
try{
plus.proximity.watchProximity(function(e) {
displayArea.innerHTML = e;
}, function(e) {
console.log('proximity error');
});
} catch(e) {
alert('exception:' + e.message);
}
}, false);
}, false);
真机联调时候一点问题没有,打包后一点反应也没有,使用的是hb真机联调和hb云打包,ios系统是6.1.3
求解。
DCloud_IOS_XTY
我看了你的包Proximity模块没有打进去,请确认下minifest.json中是否已经包含了Proximity
2015-03-30 11:34