上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 41 下一页
摘要: APP 文件下建一个Libs目录建一个BaiduService文件,需要检测引入进行调用即可 BaiduService文件内容如下 <?php namespace App\Libs; use App\Libs\baidu\AipContentCensor; use App\Libs\baidu\Ai 阅读全文
posted @ 2021-11-14 21:07 王越666 阅读(154) 评论(0) 推荐(0)
摘要: 网址参考: https://learnku.com/articles/32391 1:安装excel插件 安装方式 composer require maatwebsite/excel 2:excel 导出 新建导出文件,导入导出业务代码尽量不要和原来业务耦合。我们拿 UserModle模块举例 p 阅读全文
posted @ 2021-11-14 12:00 王越666 阅读(139) 评论(0) 推荐(0)
摘要: 1:数据库填写数据,pid=0为顶级菜单,pid=对应的id为顶级菜单的子菜单 2:laravel7 创建模型并链接对应的表名 <?php namespace App\models; use Illuminate\Database\Eloquent\Model; class Node extends 阅读全文
posted @ 2021-11-14 11:20 王越666 阅读(87) 评论(0) 推荐(0)
摘要: 网址: https://learnku.com/articles/32400 1:安装插件 环境要求 PHP: ^7.0 Laravel: ^5.5 安装方式 composer require maatwebsite/excel 2: excel 导出新建导出文件,导入导出业务代码尽量不要和原来业务 阅读全文
posted @ 2021-11-14 11:06 王越666 阅读(162) 评论(0) 推荐(0)
摘要: 1:列表首页设置点击事件,并将id传至后台,查询数据 <td class="f-14"><a title="编辑" href="javascript:;" onclick="admin_role_edit('角色编辑','/admin/role/{{$item->id}}/edit','1')" s 阅读全文
posted @ 2021-11-12 21:36 王越666 阅读(53) 评论(0) 推荐(0)
摘要: 1:新建 目录admin,新建文件夹route.php 2:将需要的路由写在route.php中即可。 3:在web.php 引入即可 include base_path('routes/admin/route.php'); 阅读全文
posted @ 2021-11-12 16:45 王越666 阅读(64) 评论(0) 推荐(0)
摘要: 1:引入 H-ui 用户添加页面,并修改script对应的src,添加input框的name属性值 <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <meta name="renderer" content="webkit|ie-comp|i 阅读全文
posted @ 2021-11-12 10:15 王越666 阅读(128) 评论(0) 推荐(0)
摘要: 1:HTML 书写 {{-- 不能自己删除自己的按钮出现 $item循环的值,$auth检测函数 --}} @if(auth()->id()!=$item->id) <a title="删除" href="javascript:;" onclick="member_del(this,{{$item- 阅读全文
posted @ 2021-11-11 21:54 王越666 阅读(56) 评论(0) 推荐(0)
摘要: 1,HTML页面写一个button按钮 <a href="javascript:;" onclick="deleteAll()" class="btn btn-danger radius"><i class="Hui-iconfont">&#xe6e2;</i> 批量删除</a> 复选框中定义值id 阅读全文
posted @ 2021-11-11 21:44 王越666 阅读(71) 评论(0) 推荐(0)
摘要: 网址: https://learnku.com/docs/laravel/8.x/installation/9354 安装: # 安装laravel composer create-project --prefer-dist laravel/laravel www.zfw.com 2:安装phpst 阅读全文
posted @ 2021-11-09 09:19 王越666 阅读(289) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 41 下一页