# 使用大量資料的方式新增(Mass Assignment)時無法新增
在 Laravel 若沒有在模型(Model)中`同時`設定「可以新增的欄位變數 `$fillable`」及「需要保護的欄位變數 `$guarded`」時,為了安全性著想,在做大量的新增或異動資料時(Mass Assignment),會無法正確的去新增或異動資料。
### 設定「可以新增的欄位變數 `$fillable`」
設定你覺得允許做大量新增的欄位名稱
~~~
class User extends Model {
protected $fillable = ['first_name', 'last_name', 'email'];
}
~~~
### 設定「需要保護的欄位變數 `$guarded`」
我們可以指定某些欄位,不能被使用大量新增或異動,去變更欄位的資料值
~~~
class User extends Model {
protected $guarded = ['id', 'password'];
}
~~~
若我們想要讓模型(Model)可以被大量新增,且我們沒有需要保護的欄位時,我們還是需要設定 `$guarded` 變數為空陣列 `[]`,否則 Laravel 預會保護所有的欄位資料,讓你無法進行大量的新增或異動資料
~~~
class User extends Model {
protected $fillable = ['id', 'password', 'first_name', 'last_name', 'email'];
protected $guarded = [];
}
~~~
### 參考資料
- [Eloquent ORM 新增、更新、刪除 - Laravel.tw](http://laravel.tw/docs/5.0/eloquent#insert-update-delete)
- [Laravel Eloquent Save to DB Using Create - Unhelpful Error](http://stackoverflow.com/questions/22338149/laravel-eloquent-save-to-db-using-create-unhelpful-error)
- [Eloquent Create Method - Always inserts blank entries.](https://laracasts.com/discuss/channels/general-discussion/eloquent-create-method-always-inserts-blank-entries)
- [Unable to create a model with Eloquent create method. Error telling MassAssignMentException](http://stackoverflow.com/questions/18699866/unable-to-create-a-model-with-eloquent-create-method-error-telling-massassignme)
- 介紹
- 環境
- .env 檔案
- 資料庫
- Migration (遷移)
- Eloquent Model (模型)
- 設定
- 關聯
- 魔術函式
- 使用 Eloquent
- 常見問題
- 無法取得查詢 Log
- 使用大量資料的方式新增時無法新增
- 使用中繼模型繼承 Eloquent 模型造成無法使用大量資料新增
- PostgreSQL
- 安裝 PostgreSQL ODBC driver
- HTTP
- 請求
- 中介層 (Middleware)
- 視圖 (View)
- 服務
- 認證登入(Auth)
- 郵件(Mail)
- 使用 Gmail 寄信
- 使用 Mailgun 寄信
- 隊列(Queue)
- database
- 非同步(async)
- 輔助方法 (Helpers)
- 自定義輔助方法
- 單元測試 (Unit Test)
- Post CSRF 錯誤
- 錯誤與日誌
- 在單元測試顯示例外
- 日誌記錄層級
- 日誌巨集
- 加密
- 雜湊
- Elixir
- 使用 Elixir 合併 CSS 與 JS
- 設計模式
- 服務容器
- PSR
- Model 模型
- 學習資源
- 套件
- Debug
- Artisan tail
- 工具
- Carbon
- 設計模式
- 其他常見問題
- Call to undefined method getCachedCompilePath()
- 變更專案目錄名稱導致 View 無法讀取
- Laravel 5.1 目錄結構異動
- 學習資源
- 官方
- 社群
- 會議議程
- 工作
- 文件
- 文章
- 套件
- 服務工具
- 教學影片
- 教學網站
- 編輯開發
- 主機
- 成功案例