|
本帖最后由 lilikilki 于 2017-3-28 09:42 编辑
在手机上除了uid其他的字段都能存,而且在我加alert弹出uid时,手机上也是可以弹出的,但不知怎么就是存不进数据库,在浏览器又是正常的,下面列出我的代码 Model.prototype.sendBtnClick = function(event){
var replytext = this.comp('replyInput').val();
var uid = justep.Shell.userId.get(); alert()
if(replytext === ''){
justep.Util.hint('不能发送空内容!',{'type':'danger'});
return;
}
var date = new Date();
this.comp('replypostData').newData({
'defaultValues' : [ {
'rid' : this._repostID,
'ruid' : uid,
'content' : replytext,
'time' : date.getTime(),
'pid' : pID
} ]
});
this.comp('replypostData').saveData();
justep.Util.hint('发送成功!',{'type':'success'});
};
表里,rid content time pid 都能存进去,就ruid为空
|
|