Aaron-wlh

1665 经验值

为何$faker->sentence$faker->paragraph都不是中文呢?

按你说的做了,可是都没有用呢。我还是用mysql数据库吧。。

APP_ENV=local
APP_KEY=base64:QTQwg+6k6sGrccfFzHylNxwmJZI7OeRvkszhqJAWbHE=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost

DB_CONNECTION=sqlite

BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
'default' => env('DB_CONNECTION', 'sqlite'),
 'connections' => [

        'sqlite' => [
            'driver' => 'sqlite',
            'database' => env('DB_DATABASE', database_path('database.sqlite')),
            'prefix' => '',
        ],

        'mysql' => [
            'driver' => 'mysql',
            'host' => env('DB_HOST', '127.0.0.1'),
            'port' => env('DB_PORT', '3306'),
            'database' => env('DB_DATABASE', 'forge'),
            'username' => env('DB_USERNAME', 'forge'),
            'password' => env('DB_PASSWORD', ''),
            'charset' => 'utf8',
            'collation' => 'utf8_unicode_ci',
            'prefix' => '',
            'strict' => true,
            'engine' => null,
        ],

Markdown怎么插入自己电脑上的图片呀?上面评论的图片都显示不出来。。 我装了sqlite3,而且database.php文件中的配置'default' => env('DB_CONNECTION', 'sqlite'), 也改了。出现错误

 [Illuminate\Database\QueryException]                                                                 
  could not find driver (SQL: select * from sqlite_master where type = 'table' and name = migrations)

[PDOException]         
  could not find driver

我运行php artisan migrate出现以下错误:

我不明白middleware('auth:api')应该使用的是auth中间件,为什么会用到RedirectIfAuthenticated这个中间件呢?

我不明白middleware('auth:api')应该使用的是auth中间件,为什么会用到RedirectIfAuthenticated这个中间件呢?

为什么会跳转到domain/home?

我不太懂为什么会调用这个RedirectIfAuthenticated中间件,是因为在ForgotPasswordController控制器中的构造方法中使用到了? 如果是的话,可我是在登陆后才访问的domain/api/user 呢。

Route::get('/user', function (Request $request) {
    return $request->user();
})->middleware('auth:api');

上面是api.php中的代码,我在浏览器中输入domain/api/user然后会跳转到domain/home,我已经登陆了。
有两个问题:

  • 为什么会跳转到domain/home?

  • 我不太懂api这个概念(感觉一知半解,迷迷糊糊的)。。还有前端和app需要的api可以都放在api.php文件吗?

好的,最近可能会比较忙,但会坚持看你的视频的,讲的很好。