摘要:
git无法pull仓库refusing to merge unrelated histories 如果合并了两个不同的开始提交的仓库,在新的 git 会发现这两个仓库可能不是同一个,为了防止开发者上传错误,于是就给下面的提示:fatal: refusing to merge unrelated hi 阅读全文
摘要:
在myChart.setOption(option);之前使用myChart.clear();这个方法可以解决问题 阅读全文
摘要:
1、from表单搜索条件可动态加减; 2、搜索结果折柱混合图形显示 代码示例: 1 @extends('Admin.common.title') 2 @section('content') 3 <div class="layui-body-in"> 4 <fieldset class="layui- 阅读全文
摘要:
layui-excel扩展导出的文件可用office打开,正常显示;直接用table带的导出功能,导出的文件用office打开显示乱码。 layui-excel扩展下载地址:https://fly.layui.com/extend/excel/ 1 @extends('Admin.common.ti 阅读全文
摘要:
微信小程序live-player报错:insertLivePlayer:fail:access denied原因:微信小程序原生组件没有开通 阅读全文
摘要:
wxml <view> <form bindsubmit="formSubmit" bindreset="formReset"> <view class="itemContainer"> <view class="iconAndText"> <image class="icons" src="../ 阅读全文
摘要:
index.wxml <view class="term"> <view> <checkbox-group bindchange="checkboxChange"> <view class="weui-cell__hd"> <checkbox value="1" color="#fe0000" cl 阅读全文
摘要:
查看Laravel的配置文件,config/database.php,查找mysql的配置 将strict的值改为false 阅读全文
摘要:
1 //返回当前的毫秒时间戳 2 function msectime(){ 3 return floor(microtime(true)*1000); 4 } 阅读全文