如何使用变形/漏勺分解公共字段?
我需要根据上下文显示两种形式。 第二个表单应包含姓名和电子邮件文本输入,然后按顺序包含第一个表单内容,但前提是用户未经身份验证。
我尝试使用 Python 类继承,但在每个测试案例中,两个新字段都显示在第一个表单的内容之后。
有没有办法正确分解变形形式中的公共字段或指定不同的显示顺序?
I need to display two forms depending on the context.
The second form should contain a name and email text input followed by the first form content in that order, but only when the user is not authenticated.
I tried with Python class inheritance but in every tested cases the two new fields were displayed after the content of the first form.
Is there a way to correcly factorise common fields in deform forms or to specify a different display order?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案可能是强制定义模式:
http://docs.pylonsproject.org/projects/colander/en/latest/basics.html#defining-a-schema-imperatively
The solution is probably to define the schema imperatively:
http://docs.pylonsproject.org/projects/colander/en/latest/basics.html#defining-a-schema-imperatively