该文被密码保护。 阅读全文
posted @ 2020-11-07 22:14 程序员小艺 阅读(44) 评论(0) 推荐(0) 编辑
摘要: centos8使用composer安装thinkphp5报错: 原因:php禁用了proc_open函数 解决方法:在php.ini中 查找disable_functions选项中是否有proc_open,如果有去掉即可。 阅读全文
posted @ 2020-11-07 20:58 程序员小艺 阅读(2041) 评论(0) 推荐(0) 编辑
摘要: centos8使用pip3 install mysqlclient 报错如下: Collecting mysqlclient Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/a5/e1/e5f2b231c05dc51d9d87f 阅读全文
posted @ 2020-11-07 13:20 程序员小艺 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 1:配置json文件 "enablePullDownRefresh": true, "backgroundTextStyle":"dark" 2:在js文件中添加刷新函数: onPullDownRefresh: function (e) { // wx.startPullDownRefresh() 阅读全文
posted @ 2020-10-19 15:49 程序员小艺 阅读(883) 评论(0) 推荐(0) 编辑
摘要: 1:可能是__tablename__ 设置错误 2:视图views中没有导入相应的模型 阅读全文
posted @ 2020-10-18 22:08 程序员小艺 阅读(628) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-10-11 16:11 程序员小艺 阅读(219) 评论(0) 推荐(0) 编辑
摘要: thinkphp5.1集成swoole使用命令: php think swoole之后 报错信息: [think\exception\ErrorException] Uncaught think\exception\ErrorException: Swoole\Http\Response::writ 阅读全文
posted @ 2020-09-01 22:15 程序员小艺 阅读(2736) 评论(0) 推荐(0) 编辑
摘要: // js上传worldvar fileM=document.querySelector("#uploadFile");$("input[name=world]").change(function(){ // console.log($("input[name=world]")[0].files); 阅读全文
posted @ 2020-08-31 23:39 程序员小艺 阅读(1023) 评论(0) 推荐(0) 编辑
摘要: 从Swoole4.3版本开始,底层对内存长度做了对齐处理。字符串长度必须是8的整数倍,如果长度为18字节会自动对其到24字节。注意非x86环境则内存对齐。'cache_size' => 8000,//必须是8的倍数 直接修改config/swoole.php即可 阅读全文
posted @ 2020-08-23 15:21 程序员小艺 阅读(1241) 评论(0) 推荐(0) 编辑
摘要: grant all privileges on *.* to root @"%" identified by "root"; 报错: ERROR 1819 (HY000): Your password does not satisfy the current policy requirements 阅读全文
posted @ 2020-08-15 12:51 程序员小艺 阅读(181) 评论(0) 推荐(0) 编辑