示例:我有会员(可以登录和更新其数据)具有一个或多个资格。所以我有一个数据对象"成员"和一个具有has_one/has_many关系的数据对象"资格"。
像这样:
class Qualification extends DataObject {
private static $db = array (
'Title' => 'Text',
'From' => 'Date',
'Till' => 'Date'
);
private static $has_one = array (
'Member' => 'Member',
);
。
class Member extends DataObject {
...
private static $has_many = array (
'Qualifications' => 'Qualification',
);
...
现在我想在前端构建一个表单,允许成员一次添加许多资格,并在同一表单中更新现有资格。
它可能看起来像这样
资格赛一
标题:xxx(文本字段) 发件人:xxx(日期字段) 目录:xxx (日期字段)
资格赛二
标题:xxx(文本字段) 发件人:xxx(日期字段) 目录:xxx (日期字段)
+ 添加资格
最好的方法是什么?
我可以使用jQuery动态添加字段,如下所示:http://jsfiddle.net/nzYAW/
但是我如何处理更新并将它们添加到数据库中。我尝试过的所有东西都非常复杂和混乱,所以我想也许其他人有一个我目前看不到的想法。每一个帮助将不胜感激!
我用 3dgoo 的解决方案解决了我的问题。我在前端窗体中使用了GridField,其中包含GridField扩展模块以及组件GridFieldEditableColumns
和GridFieldAddNewInlineButton
。下面是一个示例:
public function MyForm() {
$config = GridFieldConfig::create();
$config->addComponent(new GridFieldButtonRow('before'));
$config->addComponent(new GridFieldEditableColumns());
$config->addComponent(new GridFieldAddNewInlineButton());
$gridField = GridField::create('Qualifications', 'Qualifications', Qualification::get()->filter(array('MemberID' => Member::currentUserID()))),$config);
$fields = new FieldList(
.... here goes some other Fields like Textfields ...
TextField::create('MyTextField'),
CheckboxField::create('MyCheckboxField'),
$gridField,
);
$actions = new FieldList(
FormAction::create('myAction','save'),
FormAction::create('myOtherAction','save and next')
);
$form = new Form($this, __FUNCTION__, $fields, $actions);
$form->loadDataFrom(Member::get()->byID(Member::currentUserID()));
return $form;
}
public function myAction($data, $form) {
$member = Member::get()->byId(Member::currentUserID());
$form->saveInto($member);
$member->write();
}
我还必须将canView,canEdit,canCreate和canDelete函数添加到资格数据对象中,以允许编辑和显示它。