02 2020 档案
摘要:$('body').on('change', '#addformfile',function() { var file = new FormData(); var fileslist=$(this)[0].files; var l=fileslist.length; for(var i=0;i<l;
阅读全文
摘要:mysql5.7 关于密码问题 报错: ERROR 1862 (HY000): Your password has expired. To log in you must change it using a client that supports expired passwords. 翻译: 错误
阅读全文
摘要:在命令行里面输出密码或者更更改密码 .在命令行运行:taskkill /f /im mysqld-nt.exe 下面的操作是操作mysql中bin目录下的一些程序,如果没有配置环境变量的话,需要切换到mysql的bin 目录下执行如下语句。不然无效 .继续在命令行运行:mysqld-nt --ski
阅读全文
摘要:<?phpnamespace app\admin\controller;use think\Controller;class Test extends controller{ const name='PHP软件开发工程师'; private $a='1'; public function index
阅读全文
摘要:Date.prototype.Format = function (fmt) { //author: meizz var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "h+": this.getHours(), //
阅读全文
摘要:1.json_decode() json_decode (PHP 5 >= 5.2.0, PECL json >= 1.2.0) json_decode — 对 JSON 格式的字符串进行编码 说明 mixed json_decode ( string $json [, bool $assoc ]
阅读全文
摘要:var options;$.ajax({ data:formData, url:'__URL__/saveorder', dataType:"JSON", type:"POST", async:false, success:function(result){ options = result.dat
阅读全文