1
屬性是否有自動/動態設置爲DataMapper的對象的所有屬性,而不是賦予它們一個一個的方法嗎?笨的DataMapper集對象從郵政數據
所以我的表單字段名稱完全相同從DataMapper的模型的屬性。
那麼,有一個較短的方式做到這一點:
function add() {
if($this->input->post('client-add')) {
$c = new Client();
$c->name = $this->input->post('name');
$c->email = $this->input->post('email');
// and so on for about 20 more properties
$c->save();
}}
我結束了從笨DataMapper的安裝陣列助手,結束了做$ C = from_array($這個 - >輸入 - >後()); $ C-)>保存(; – Simon 2012-03-26 22:03:10