摘要: `create_time` timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0), 这样的5.7版本,在5.5版本中新建表的时候是不能成功的、 需要修改 ` create_time ` ti 阅读全文
posted @ 2020-12-29 15:59 刘俊涛的博客 阅读(346) 评论(0) 推荐(1)
摘要: 在弹框中使用的xm-select多选总是不生效, 处理办法如下: 把弹框 div 结构改为script Before: <div id="popUpdate"> After: <script type="text/html" id="popUpdate"> 文章来源:刘俊涛的博客 欢迎关注公众号、留 阅读全文
posted @ 2020-12-29 11:34 刘俊涛的博客 阅读(2249) 评论(0) 推荐(0)
摘要: 一般我们都会用body 发送post 数据,那么PHP如何接收呢? <?php $jsonStr = file_get_contents('php://input'); if (!$jsonStr) { return $this->jsonCode('参数有误!', 1); } else { $js 阅读全文
posted @ 2020-12-29 11:25 刘俊涛的博客 阅读(1038) 评论(0) 推荐(0)