PhalconPHP - 从模型中添加表单中的多个复选框

时间:2015-07-17 15:04:48

标签: php phalcon

我有两个型号:Rooms和RoomAttributes。他们之间有很多关系:

$this->hasManyToMany(
    "id",
    "RoomAttributes",
    "roomID",
    "attributesID",
    "roomattributesrelation",
    "id",
    array('alias' => 'attributes')
);

现在我正在创建一个表单来添加新房间,我希望将所有属性列表作为复选框。这样做的最佳方式是什么?我应该如何保存我的房间模型?

0 个答案:

没有答案