上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 37 下一页
摘要: 执行: php artisan make:migration add_字段_to_表名_table --table=表名 此时在database/migrations文件夹下会生成一个相应文件,更改如下 use Illuminate\Database\Schema\Blueprint; use Il 阅读全文
posted @ 2019-12-19 16:14 明明一颗大白菜 阅读(951) 评论(0) 推荐(0) 编辑
摘要: 这个通常由路由绑定出的问题,注意有绑定模型的路由,同路径的路由需要放在没绑定路由的后面 例如:/product/comments和/product的是同路径,/product必须放在/product/comments 后面 阅读全文
posted @ 2019-12-18 16:20 明明一颗大白菜 阅读(2715) 评论(0) 推荐(0) 编辑
摘要: 解决方案:打开创建表的那个 migration 文件,在创建表的方法执行之前加一个判断条件 if (!Schema::hasTable('password_resets')) { Schema::create('password_resets', function (Blueprint $table 阅读全文
posted @ 2019-12-03 19:17 明明一颗大白菜 阅读(964) 评论(0) 推荐(0) 编辑
摘要: 创建了新的laravel项目后, 运行提示:No application encryption key has been specified 解决方法: 这个是由于没有配置好 APP_KEY 在终端上, cd到项目目录位置然后执行: 阅读全文
posted @ 2019-12-02 22:00 明明一颗大白菜 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 在将特定格式转换为时间戳的时候,我们通常的做法事new Date(str).getTime(), 这个方法在谷歌上是可行的,但是在ie上需要注意一点,就是这个str如果是“2019-11-15”的格式,需要转换成“2019/11/15” 的格式,不然会出现NAN的情况 阅读全文
posted @ 2019-11-15 10:18 明明一颗大白菜 阅读(835) 评论(0) 推荐(0) 编辑
摘要: 其实这个很简单,是jq里面的一个delegate操作,具体如下: div下面的button点击的时候,打印start,这个button可以是动态生成的 阅读全文
posted @ 2019-11-04 16:40 明明一颗大白菜 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 把请选择的第一项的value设置为空即可 阅读全文
posted @ 2019-10-10 09:47 明明一颗大白菜 阅读(10539) 评论(0) 推荐(1) 编辑
摘要: html: js: 阅读全文
posted @ 2019-09-25 15:57 明明一颗大白菜 阅读(2537) 评论(0) 推荐(0) 编辑
摘要: wxml: js: 阅读全文
posted @ 2019-09-11 09:09 明明一颗大白菜 阅读(2372) 评论(0) 推荐(0) 编辑
摘要: windows: 1.设置package.json的有关window打包的相关内容 "win": { "icon": "build/icons/icon.ico", "target": [ { "target": "nsis", "arch": [ "x64", "ia32" ] } ], "ver 阅读全文
posted @ 2019-09-05 18:37 明明一颗大白菜 阅读(16373) 评论(7) 推荐(2) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 37 下一页
<-- -->