上一页 1 2 3 4 5 6 7 8 9 10 ··· 30 下一页
摘要: composer require liliuwei/thinkphp-jump use \liliuwei\think\Jump use Jump 阅读全文
posted @ 2023-12-23 03:58 79524795 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 登录小程序后台 mp.weixin.qq.com 打开 开发-开发管理 打开之后 ,往下滑,找到 扫普通链接二维码打开小程序 切记 只有扫码测试链接,才可以扫码进入到体验版小程序 。不然就会跳转到 线上版小程序!!! 非常坑爹 阅读全文
posted @ 2023-12-22 16:56 79524795 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 1.安装 1.1composer安装phpoffice/phpword composer require phpoffice/phpword 1.2 后台代码 $file = $this->request->request('file'); if (!$file) { $this->error(__ 阅读全文
posted @ 2023-12-21 21:04 79524795 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 增加配置缓存php artisan config:cache增加路由缓存php artisan route:cache升级laravel版本,可能是laravel版本的问题composer require laravel/framework 阅读全文
posted @ 2023-11-30 12:18 79524795 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 直接上代码 TRUNCATE TABLE table_name; 阅读全文
posted @ 2023-11-16 16:53 79524795 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 可以解决的,没问题的 阅读全文
posted @ 2023-11-14 12:05 79524795 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 直接上代码 在后台写 允许跨域的域名, $allowedDomains = array("https://example1.com", "https://example2.com"); $origin = isset($_SERVER['HTTP_ORIGIN']) ? $_SERVER['HTTP 阅读全文
posted @ 2023-10-30 11:27 79524795 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Uniapp中弹窗 直接上代码 uni.showModal({ title: '提示', content: '这是一个自定义按钮文字的模态对话框', confirmText: '自定义确定', // 自定义确定按钮的文字 cancelText: '自定义取消', // 自定义取消按钮的文字 succ 阅读全文
posted @ 2023-10-27 18:16 79524795 阅读(106) 评论(0) 推荐(0) 编辑
摘要: Niushop中弹窗确定取消 直接上代码 uni.showModal({ title: '提示', content: '必须先购买VIP商品?', success: res => { if (res.confirm) { } }, }) 阅读全文
posted @ 2023-10-23 18:25 79524795 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Niushop中uniapp的访问接口 直接上代码 this.$api.sendRequest({ url: '/pintuan/api/order/isbuy', success: res => { console.log(res) if(res.code == 1){ //跳转VIP } }, 阅读全文
posted @ 2023-10-23 18:24 79524795 阅读(23) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 30 下一页