上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 三级联动请看:https://www.cnblogs.com/fsp69/p/13919624.html 地图的视图层: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" cont 阅读全文
posted @ 2020-11-03 23:30 满眼都是她 阅读(108) 评论(0) 推荐(0)
摘要: 三级联动表:http://m.caomeipi.com/(鹏鹏) 路由: //省份 Route::get('province','PortController@province'); //市 Route::get('city','PortController@city'); //区 Route::g 阅读全文
posted @ 2020-11-03 12:36 满眼都是她 阅读(155) 评论(0) 推荐(0)
摘要: 1.下载安装包 http://datatables.club/ 下载好的包 下载第一个,解压,把解压好的文件放入public目录下 视图层中 <div class="formControls col-xs-4 col-sm-5"> <input type="hidden" class="input- 阅读全文
posted @ 2020-10-30 16:08 满眼都是她 阅读(311) 评论(0) 推荐(0)
摘要: 导入: header("content-type:text/html;charset=utf-8"); $dataa = DB::table('users')->get(); $data = json_decode(json_encode($dataa),true); //转为json数组 $str 阅读全文
posted @ 2020-10-30 00:11 满眼都是她 阅读(178) 评论(0) 推荐(1)
摘要: 视图层: <form method="get"> <input type="text" class="input-text" style="width:250px" placeholder="输入角色名称" value="{{$name}}" name="name"> <button type="s 阅读全文
posted @ 2020-10-30 00:07 满眼都是她 阅读(614) 评论(0) 推荐(0)
摘要: 模型层使用软删除: //开启软删除 use SoftDeletes; protected $dates = ['deleted_at']; 判断软删除字段是否为空 如果是真的 则还原 反之则删除 @if(软删除字段!=null) <a href="{{route('跳转的路由',还原的id)}}" 阅读全文
posted @ 2020-10-30 00:04 满眼都是她 阅读(242) 评论(0) 推荐(0)
摘要: 1.首先先成为开发者 网址:https://connect.qq.com 2.SDK下载 网址:https://wiki.connect.qq.com/sdk%E4%B8%8B%E8%BD%BD 3.执行qqConnect2.1/install目录中的index.php文件、配置如下: html: 阅读全文
posted @ 2020-10-29 23:46 满眼都是她 阅读(163) 评论(0) 推荐(0)
摘要: php artisan make:request AddArtRequest 控制器引入: 效果: 阅读全文
posted @ 2020-10-29 13:52 满眼都是她 阅读(87) 评论(0) 推荐(0)
摘要: 1.开启 SMTP 服务 2.获取授权码 SMTP 服务器认证密码,需要妥善保管(PS:密码直接没有空格) 3.在laravel中配置服务器 打开.env文件 MAIL_DRIVER=smtpMAIL_HOST=smtp.qq.comMAIL_PORT=25MAIL_USERNAME=邮箱MAIL_ 阅读全文
posted @ 2020-10-29 00:52 满眼都是她 阅读(186) 评论(0) 推荐(0)
摘要: html: {{-- value获取id --}} <input type="checkbox" value="{{$v['id']}}" name="id[]"> {{-- 点击事件 --}} <a onclick="deleteAll()"> 批量删除</a> Jquery: //jquery全 阅读全文
posted @ 2020-10-28 01:08 满眼都是她 阅读(218) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 下一页