處理多語言內容時,將翻譯儲存在 JSON 欄位中通常比每個屬性的單獨行儲存更有效。這種方法將翻譯整合到單一列中,從而簡化了資料管理和檢索。
我們將增強翻譯模型和表,以使用 JSON 列來儲存翻譯。這將涉及更新表架構並修改 Translatable 特徵以處理 JSON 資料。
第 1 步:建立翻譯表遷移
如果翻譯表尚不存在,則建立新的遷移:
php artisan make:migration create_translations_table
第 2 步:定義表結構
在database/migrations中開啟產生的遷移檔案。對於新表,定義如下:
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateTranslationsTable extends Migration { public function up() { Schema::create('translations', function (Blueprint $table) { $table->id(); $table->string('locale'); // Stores the locale, e.g., 'en', 'fr' $table->string('translatable_type'); // Stores the related model type, e.g., 'Post', 'Product' $table->unsignedBigInteger('translatable_id'); // Stores the ID of the related model $table->json('translations'); // Stores all translations as a JSON object $table->timestamps(); }); } public function down() { Schema::dropIfExists('translations'); } }
第 3 步:運行遷移
將遷移應用到您的資料庫:
php artisan migrate
第 4 步:建立翻譯模型
接下來,創建翻譯模型來處理多態關係:
php artisan make:model Translation
Translation模型中,定義多型關係:
class Translation extends Model { protected $fillable = ['locale', 'translatable_type', 'translatable_id', 'translations']; protected $casts = [ 'translations' => 'array', ]; public function translatable() { return $this->morphTo(); } }
為了讓翻譯處理可在多個模型中重複使用,我們將建立一個 Translatable 特徵,它將根據使用者選擇的區域設定自動載入翻譯內容。此外,如果所選語言環境沒有可用的翻譯,我們將新增後備機制以從預設語言環境載入內容。
第 1 步:使用 JSON 處理建立可翻譯特徵
namespace App\Traits; use App\Models\Translation; use Illuminate\Support\Facades\App; trait Translatable { public static function bootTranslatable() { static::retrieved(function ($model) { $model->loadTranslations(); }); } public function translations() { return $this->morphMany(Translation::class, 'translatable'); } public function loadTranslations() { $locale = App::getLocale(); $defaultLocale = config('app.default_locale', 'en'); // Fallback to the default locale // Try to load translations for the current locale $translation = $this->translations()->where('locale', $locale)->first(); if (!$translation && $locale !== $defaultLocale) { // If no translations are found for the current locale, fallback to the default locale $translation = $this->translations()->where('locale', $defaultLocale)->first(); } if ($translation) { $translations = $translation->translations; foreach ($translations as $key => $value) { $this->{$key} = $value; } } } public function addTranslations(array $translations, $locale = null) { $locale = $locale ?? App::getLocale(); return $this->translations()->updateOrCreate( ['locale' => $locale], ['translations' => $translations] ); } }
第 2 步:將可翻譯特徵應用於您的模型
將 Translatable 特徵加入任何需要翻譯支援的模型中。
namespace App\Models; use App\Traits\Translatable; use Illuminate\Database\Eloquent\Model; class Post extends Model { use Translatable; protected $fillable = ['title', 'content']; }
將翻譯加入為 JSON 物件:
$post = Post::create(['title' => 'Default Title', 'content' => 'Default Content']); // Adding translations $post->addTranslations([ 'title' => 'Hello World', 'content' => 'Welcome to our website' ], 'en'); $post->addTranslations([ 'title' => 'Bonjour le monde', 'content' => 'Bienvenue sur notre site Web' ], 'fr');
檢索翻譯模型
當您檢索 Post 模型時,它將根據當前語言環境自動載入翻譯內容,或在必要時回退到預設語言環境:
App::setLocale('fr'); $post = Post::find(1); echo $post->title; // Displays "Bonjour le monde" if French translation exists App::setLocale('es'); $post = Post::find(1); echo $post->title; // Displays "Hello World" as it falls back to the English translation
在檢視中顯示翻譯內容
在 Blade 視圖中,您可以像任何其他模型屬性一樣顯示翻譯的內容:
{{ $post->title }}
{{ $post->content }}
結論
透過使用 JSON 列來儲存翻譯並實現回退機制,您可以簡化 Laravel 應用程式中多語言內容的管理。這種方法將翻譯整合到單一列中,簡化了資料處理並使您的程式碼庫更易於維護。無論您是建立部落格、電子商務網站還是任何多語言應用程序,此方法都能確保流暢高效的用戶體驗。
享受!
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3