如何解决具有两个类别和关系的形式
| 我在教义1.2中有:User:
columns:
login: { type: string(255),notnull: true }
password: { type: string(255),notnull: true }
Student:
columns:
user_id: { type: integer,notnull: true }
school_name: { type: string(255) }
school_year: { type: integer(4) }
relations:
User: { onDelete: CASCADE,local: user_id,foreign: id }
Teacher:
columns:
user_id: { type: integer,notnull: true }
city: { type: string(255) }
street: { type: string(255) }
relations:
User: { onDelete: CASCADE,foreign: id }
如果我打开localhost / user / new有以下格式:
login:
password:
很好
如果我以格式打开localhost / student / new have:
user_id
school_name:
school_year:
但我想:
login:
password:
school_name:
school_year:
这该怎么做?感谢帮助!
解决方法
您必须使用一个称为embedRelation的sfForm方法。您必须创建一个扩展userForm的新表单,并(在configure方法中)与Student设置embed关系。
例如:
class UserStudentForm extends UserForm
{
public function configure()
{
// Existing Student forms
$this->embedRelation(\'Student\');
$this->widgetSchema->setNameFormat(\'user_student[%s]\');
}
}
检查此示例,该示例完美说明了如何使用它。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。