摘要: Route::group(['namespace' => 'Api'], function (){ Route::any('send','SmsController@send'); }); namespace是指向Api文件夹下所有文件 阅读全文
posted @ 2020-11-02 23:29 caibaotimes 阅读(504) 评论(0) 推荐(0) 编辑
摘要: 1.使用toSql()方法 2.用DB自带的getQueryLog方法直接打印: use Illuminate\Support\Facades\DB; 1 DB::connection()->enableQueryLog(); // 开启QueryLog \App\User::find(1); du 阅读全文
posted @ 2020-11-02 21:47 caibaotimes 阅读(5390) 评论(0) 推荐(0) 编辑
摘要: Laravel 字符主键获取为0 laravel的orm中默认的keyType 是int类型, 所以当model的主键为string类型的时候,会获取到0的值。 解决方法: 在model 里面添加 protected $keyType = 'string'; 阅读全文
posted @ 2020-11-02 21:44 caibaotimes 阅读(785) 评论(0) 推荐(0) 编辑