我在真机调试的时候mui.fire可以正常使用,但是打包后不起作用了。
jclarry
- 发布:2015-01-28 17:20
- 更新:2017-09-12 08:48
- 阅读:2652
jclarry (作者)
OnReady: function() {
var that = this;
m.common.init(function() {
//mui.common.dropTable('article_list');
window.addEventListener("catId", function(event) {
var self = plus.webview.currentWebview();
//最新刷新时间
that.catId = event.detail.id;
that.isShowSlider = event.detail.isShowSlider;
if (that.catId != that.activeCat) {
$("#article_list").empty();
that.activeCat = that.catId;
var now = new Date();
that.minDate = now.toString("yyyy-MM-dd HH:mm:ss");
}
var sql = "select id,topflag,ptime from article_list where category=? and ptime<datetime(?) order by ptime desc";
m.common.queryDBSql(sql, [that.catId,that.minDate ], function(result) {
if (result.length > 0) {
that.findAll();
} else {
that.serverToDb(1);
}
})
});
});
},
jclarry (作者)
真机调试是正常的, 打包后不行
2015-01-28 17:51
xiaoyi
这么怪...正儿八经,还是真机打点打印日志,调调。没有代码,也分析不出来什么问题。
2015-01-28 17:53