App下載

詞條

大約有 7,000 項符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,250 項。(搜索耗時:0.0049秒)

3781.Laravel 8 時間戳

...兩個列, 請將模型中的 $timestamps 屬性設(shè)置為 false:<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Flight extends Model { /** * 是否主動維護時間戳 * * @var bool */ public $timestamps = false; } 如果需要自定義時間戳的格式,在你的...

http://www.o2fo.com/laravel_8/laravel_8-cldg3i0x.html

3782.Laravel 8 數(shù)組 & JSON 轉(zhuǎn)換

... array 類型轉(zhuǎn)換,那么當(dāng)你訪問的時候就會自動被轉(zhuǎn)換為 PHP 數(shù)組:<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class User extends Model { /** * 應(yīng)進行類型轉(zhuǎn)換的屬性 * * @var array */ protected $casts = [ 'options' => 'array'...

http://www.o2fo.com/laravel_8/laravel_8-l4kv3i8b.html

3783.Laravel 8 期望輸入 / 輸出

...age = $this->choice('Which language do you program in?', [ 'PHP', 'Ruby', 'Python', ]); $this->line('Your name is '.$name.' and you program in '.$language.'.'); }); 你可以參考下面的示例代碼來測試此命令,該測試使用...

http://www.o2fo.com/laravel_8/laravel_8-wg8t3ibh.html

3784.Laravel 8 安裝

...你應(yīng)用的權(quán)限。 安裝好 Dusk 包后,運行 dusk:install 命令:php artisan dusk:install Browser 目錄將會在 tests 目錄下被創(chuàng)建,并且包含一個測試用例。接下來,在你的 .env 文件中設(shè)置 APP_URL 變量。這個值應(yīng)該與你在瀏覽器中打開本應(yīng)用的 U...

http://www.o2fo.com/laravel_8/laravel_8-1wgn3ibl.html

3785.Laravel 8 管理 ChromeDriver 安裝

...iver 命令:# 為你的操作系統(tǒng)安裝最新版本的 ChromeDriver... php artisan dusk:chrome-driver # 為你的操作系統(tǒng)安裝指定版本的 ChromeDriver... php artisan dusk:chrome-driver 74 # 為所有支持的操作系統(tǒng)安裝指定版本的 ChromeDriver... php artisan dusk:chrome-drive...

http://www.o2fo.com/laravel_8/laravel_8-7aqw3ibm.html

3786.Laravel 8 運行測試

使用 dusk Artisan 命令來運行你的瀏覽器測試:php artisan dusk 如果上次運行 dusk 命令時測試失敗,則可以通過使用 dusk:fails 命令重新運行失敗的測試來節(jié)省時間:php artisan dusk:fails dusk 命令接受任何能讓 PHPUnit 正常運行的參數(shù)。例...

http://www.o2fo.com/laravel_8/laravel_8-4lwa3ibq.html

3787.Laravel 8 Heroku CI

...文件中:{ "environments": { "test": { "buildpacks": [ { "url": "heroku/php" }, { "url": "https://github.com/heroku/heroku-buildpack-google-chrome" } ], "scripts": { "test-setup": "cp .env.testing .env", "test": "nohup bash -c './vendor/laravel/dusk/bin/chromedriver-linux > /dev/null 2>...

http://www.o2fo.com/laravel_8/laravel_8-ohvy3if9.html

3788.Laravel 8 寫工廠

首先,請查看應(yīng)用程序中的 database/factories/UserFactory.php 文件。 開箱即用,此文件包含以下工廠定義: namespace Database\Factories; use App\Models\User; use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Str; class UserFactory extends Factor...

http://www.o2fo.com/laravel_8/laravel_8-f2wa3ifh.html

3789.Laravel 8 清除令牌

...令來清除它: # Purge revoked and expired tokens and auth codes... php artisan passport:purge # Only purge revoked tokens and auth codes... php artisan passport:purge --revoked # Only purge expired tokens and auth codes... php artisan passport:purge --expired 你可以在控制臺的 Kernel ...

http://www.o2fo.com/laravel_8/laravel_8-bsdo3iid.html

3790.Laravel 8 安裝

...移文件。Sanctum 的配置文件將會保存在 config 文件夾中:php artisan vendor:publish --provider="Laravel\Sanctum\SanctumServiceProvider" 最后,你需要執(zhí)行數(shù)據(jù)庫遷移文件。Sanctum 將創(chuàng)建一個數(shù)據(jù)庫表用于存儲 API 令牌:php artisan migrate 假如你需要使...

http://www.o2fo.com/laravel_8/laravel_8-8yp23ijt.html

抱歉,暫時沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

3781.Laravel 8 時間戳

...兩個列, 請將模型中的 $timestamps 屬性設(shè)置為 false:<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Flight extends Model { /** * 是否主動維護時間戳 * * @var bool */ public $timestamps = false; } 如果需要自定義時間戳的格式,在你的...

http://www.o2fo.com/laravel_8/laravel_8-cldg3i0x.html

3782.Laravel 8 數(shù)組 & JSON 轉(zhuǎn)換

... array 類型轉(zhuǎn)換,那么當(dāng)你訪問的時候就會自動被轉(zhuǎn)換為 PHP 數(shù)組:<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class User extends Model { /** * 應(yīng)進行類型轉(zhuǎn)換的屬性 * * @var array */ protected $casts = [ 'options' => 'array'...

http://www.o2fo.com/laravel_8/laravel_8-l4kv3i8b.html

3783.Laravel 8 期望輸入 / 輸出

...age = $this->choice('Which language do you program in?', [ 'PHP', 'Ruby', 'Python', ]); $this->line('Your name is '.$name.' and you program in '.$language.'.'); }); 你可以參考下面的示例代碼來測試此命令,該測試使用...

http://www.o2fo.com/laravel_8/laravel_8-wg8t3ibh.html

3784.Laravel 8 安裝

...你應(yīng)用的權(quán)限。 安裝好 Dusk 包后,運行 dusk:install 命令:php artisan dusk:install Browser 目錄將會在 tests 目錄下被創(chuàng)建,并且包含一個測試用例。接下來,在你的 .env 文件中設(shè)置 APP_URL 變量。這個值應(yīng)該與你在瀏覽器中打開本應(yīng)用的 U...

http://www.o2fo.com/laravel_8/laravel_8-1wgn3ibl.html

3785.Laravel 8 管理 ChromeDriver 安裝

...iver 命令:# 為你的操作系統(tǒng)安裝最新版本的 ChromeDriver... php artisan dusk:chrome-driver # 為你的操作系統(tǒng)安裝指定版本的 ChromeDriver... php artisan dusk:chrome-driver 74 # 為所有支持的操作系統(tǒng)安裝指定版本的 ChromeDriver... php artisan dusk:chrome-drive...

http://www.o2fo.com/laravel_8/laravel_8-7aqw3ibm.html

3786.Laravel 8 運行測試

使用 dusk Artisan 命令來運行你的瀏覽器測試:php artisan dusk 如果上次運行 dusk 命令時測試失敗,則可以通過使用 dusk:fails 命令重新運行失敗的測試來節(jié)省時間:php artisan dusk:fails dusk 命令接受任何能讓 PHPUnit 正常運行的參數(shù)。例...

http://www.o2fo.com/laravel_8/laravel_8-4lwa3ibq.html

3787.Laravel 8 Heroku CI

...文件中:{ "environments": { "test": { "buildpacks": [ { "url": "heroku/php" }, { "url": "https://github.com/heroku/heroku-buildpack-google-chrome" } ], "scripts": { "test-setup": "cp .env.testing .env", "test": "nohup bash -c './vendor/laravel/dusk/bin/chromedriver-linux > /dev/null 2>...

http://www.o2fo.com/laravel_8/laravel_8-ohvy3if9.html

3788.Laravel 8 寫工廠

首先,請查看應(yīng)用程序中的 database/factories/UserFactory.php 文件。 開箱即用,此文件包含以下工廠定義: namespace Database\Factories; use App\Models\User; use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Str; class UserFactory extends Factor...

http://www.o2fo.com/laravel_8/laravel_8-f2wa3ifh.html

3789.Laravel 8 清除令牌

...令來清除它: # Purge revoked and expired tokens and auth codes... php artisan passport:purge # Only purge revoked tokens and auth codes... php artisan passport:purge --revoked # Only purge expired tokens and auth codes... php artisan passport:purge --expired 你可以在控制臺的 Kernel ...

http://www.o2fo.com/laravel_8/laravel_8-bsdo3iid.html

3790.Laravel 8 安裝

...移文件。Sanctum 的配置文件將會保存在 config 文件夾中:php artisan vendor:publish --provider="Laravel\Sanctum\SanctumServiceProvider" 最后,你需要執(zhí)行數(shù)據(jù)庫遷移文件。Sanctum 將創(chuàng)建一個數(shù)據(jù)庫表用于存儲 API 令牌:php artisan migrate 假如你需要使...

http://www.o2fo.com/laravel_8/laravel_8-8yp23ijt.html

抱歉,暫時沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程