摘要: 底部导航 在app.json中 "tabBar": { "list": [ { "pagePath": "pages/index/index", "iconPath":"", "text": "首页" }, { "pagePath": "pages/fang/fang", "iconPath":"" 阅读全文
posted @ 2020-11-24 19:32 记忆有限博客长存 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 首先将省市区的数据存储到数据库中 sql文件地址:http://m.caomeipi.com/ html <select name="province" style="width: 150px;" class="province form-control"> <option>==请选择省==</op 阅读全文
posted @ 2020-11-02 20:55 记忆有限博客长存 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 有时候需要获取标签里属性里的值,可以采用以下方法: demo: <a href="/admin/article/${id}" onclick="return del(this)">删除</a> 获取里面 href 的值: function del(ret) { //这里ret 打印出来的是整个a标签 阅读全文
posted @ 2020-11-01 19:43 记忆有限博客长存 阅读(1430) 评论(0) 推荐(0) 编辑
摘要: 这里使用的是WebUploader 百度提供的插件 首先下载最新的包 下载第一个,解压,把解压好的文件放入public目录下 视图层中 <div class="formControls col-xs-4 col-sm-5"> <input type="hidden" class="input-tex 阅读全文
posted @ 2020-10-29 14:01 记忆有限博客长存 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 1.首先你要在qq悠闲中开启你的 SMPT(设置->账户) 获取到你的授权码 2.配置laravel MAIL_DRIVER=smtpMAIL_HOST=smtp.qq.comMAIL_PORT=465MAIL_USERNAME=1402628664@qq.comMAIL_PASSWORD=ogxw 阅读全文
posted @ 2020-10-28 13:35 记忆有限博客长存 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1.模型层 引用类use Illuminate\Database\Eloquent\SoftDeletes;class类中引用软删除use SoftDeletes;然后执行正常的删除,列表已经不显示,但数据库中依旧存在强制删除 User::find($id)->forceDelete();获取包括软 阅读全文
posted @ 2020-10-28 10:24 记忆有限博客长存 阅读(182) 评论(0) 推荐(0) 编辑
摘要: Test.php是测试你的环境是否部署完成 demo里的sendSms.php里修改 // fixme 必填: 请参阅 https://ak-console.aliyun.com/ 取得您的AK信息$accessKeyId = "your access key id";$accessKeySecre 阅读全文
posted @ 2020-10-27 15:50 记忆有限博客长存 阅读(351) 评论(0) 推荐(0) 编辑
摘要: QQ互联官网 首先申请成为开发者获取到后面需要的 client_id redirect_uri client_secret 文档资料/SDK及资源下载/SDK下载/PHP SDK 下载下来修改文件修改 install/install.html<form action="index.php" meth 阅读全文
posted @ 2020-10-26 21:59 记忆有限博客长存 阅读(185) 评论(0) 推荐(0) 编辑
摘要: auth()命令 auth()->attempt() 登录验证 auth()->check 判断是否登录,有没有session缓存 auth()->loginout() 清除缓存 退出登录时使用 auth()->user() 获取当前认证用户 配置 app/config/auth.php 'prov 阅读全文
posted @ 2020-10-26 17:07 记忆有限博客长存 阅读(1691) 评论(0) 推荐(0) 编辑
摘要: 1.导出 public function excel(){ $data=User::all(); $data=json_decode(json_encode($data),true); //true必须写 这里的目的是把json格式转化为数组 $str="ID\t标题\t图片地址\t内容\t作者\t 阅读全文
posted @ 2020-10-26 16:50 记忆有限博客长存 阅读(97) 评论(0) 推荐(0) 编辑