摘要:
【应用生命周期】 Uni-App支持的应用生命周期函数如下: 【onLanch】 初始化完成时触发 【onShow】启动,或从后台进入前台 【onHide】从前台进入后台 【onUniNViewMessage】对nvue页面发送数据进行监听 【onError】报错时触发 【onPageNotFoun 阅读全文
posted @ 2021-09-28 23:27
RookieCoderAdu
阅读(255)
评论(0)
推荐(0)
摘要:
1.添加字段的时候添加默认值 alter table [Student] add [Sex] bit not null default '1' 2.已存在字段添加默认值 alter table [Student] add default '1' for [Sex] with values 3.已存在 阅读全文
posted @ 2021-09-28 15:12
RookieCoderAdu
阅读(694)
评论(0)
推荐(0)