|
发表于 2017-11-3 15:33:28
|
显示全部楼层
Model.prototype.button5Click = function(event){
//列表
var self = this;
alert(123);
window.ble.scan([], 15, function(res) {
alert(JSON.stringify(res));
data.loadData([ {
"id" : res.id,
"name" : res.name
} ], true, null, 0, false)
}, function(res) {
alert("error:" + JSON.stringify(res))
});
};/////
弹出了123,然后就没有了 |
|