makumba - 同时创建相关实体

发布于 2024-10-21 03:54:27 字数 327 浏览 1 评论 0原文

我想知道是否可以使用 makumba 以某种方式同时创建两个相关实体(一个提交)。

查看网站上的示例,假设我有一个 Company.mdd:

name = char[50]

和 Department.mdd:

name = char[50]
company = ptr company.Company

同时创建公司和实体的最简单方法是什么。我可以以某种方式嵌套 new:form 吗?

I would like to know if it's possible to somehow create two related entities at the same time (one submit) using makumba.

Looking at the example on the website let's say I have a Company.mdd:

name = char[50]

and Department.mdd:

name = char[50]
company = ptr company.Company

What would be the easiest way to create a company and entity in the same time. Can I somehow have nested new:form?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

墨洒年华 2024-10-28 03:54:27

是的,嵌套的 newForms 存在,您可以像这样使用它们:

<mak:newForm type="Company" name="company" action="companyList.jsp" method="post">
  Name: <mak:input name="name"/><br/>
  <mak:newForm type="Department">
    Department name: <mak:input name="name"/><br/>
    <mak:input name="company" value="company" type="hidden"/>
  </mak:newForm>
  <input type="submit">
</mak:newForm>

Yes, nested newForms exist and you can use them like this:

<mak:newForm type="Company" name="company" action="companyList.jsp" method="post">
  Name: <mak:input name="name"/><br/>
  <mak:newForm type="Department">
    Department name: <mak:input name="name"/><br/>
    <mak:input name="company" value="company" type="hidden"/>
  </mak:newForm>
  <input type="submit">
</mak:newForm>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文