有請大大解釋疑惑:
以下資料表設計中的 slug 用途是甚麼?
網路文章多表示:查詢資料時可以使用id,但是id 比較適合電腦判讀 不利人類閱讀,因此設置 slug 方便人類查詢...並且有利於 seo,問題是現在不都是 滑鼠按一按 、 手指點一點 就開啟自己想看的資料嗎? 有誰會輸入 slug 打開資料,就是要輸入資料 應該也適用於查詢不是嗎?
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreatePostsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// Create table for storing roles
Schema::create('posts', function (Blueprint $table) {
$table->increments('id');
$table->integer('author_id');
$table->integer('category_id')->nullable();
$table->string('title');
$table->string('seo_title')->nullable();
$table->text('excerpt');
$table->text('body');
$table->string('image')->nullable();
//這個 slug 用途?
$table->string('slug')->unique();
$table->text('meta_description');
$table->text('meta_keywords');
$table->enum('status', ['PUBLISHED', 'DRAFT', 'PENDING'])->default('DRAFT');
$table->boolean('featured')->default(0);
$table->timestamps();
//$table->foreign('author_id')->references('id')->on('users');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('posts');
}
}