是否可以在单独的应用程序中使用 Orbeon Form Builder 表单?

发布于 2024-10-27 22:20:40 字数 172 浏览 0 评论 0原文

我想使用 Orbeon Form Builder 创建一个 xforms 文档,并在我的应用程序中使用它,该应用程序与 Orbeon 分开运行(仅使用 xforms 引擎)。
我怎样才能做到这一点?我创建了一个表单并发布了它,但我找不到创建的文件。如果我使用表单的源代码,它不起作用。有什么想法吗?

谢谢!

I want to create an xforms doc with Orbeon Form Builder, and use it in my application, which runs separated from Orbeon (uses only the xforms engine).
How can I do that? I created a form, published it, but i cant find the created file. If I use the source code of the form, it doesn't work. Any ideas?

Thanks!

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

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

发布评论

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

评论(1

够钟 2024-11-03 22:20:40

当您在表单生成器中创建表单时,您可以为其指定应用程序名称和表单名称。假设您选择了“my-app”和“my-form”。然后您的表单将位于:

http://localhost:8080/orbeon/fr/my-app/my-form/new

在此 URL 中:

  • 主机名和端口(此处:localhost:8080)将取决于您部署 Orbeon Forms 的服务器和端口。
  • 上下文(此处:/orbeon)取决于您在应用程序服务器上部署 Orbeon Forms 的位置(默认情况下为 /orbeon)。

在您的应用程序中,您可以使用常规 URL 将用户引导至表单,如果您想了解他们输入的数据,您可以设置 工作流发送按钮,用于 POST 回带有输入数据的 XML由用户访问您的应用程序。

When you create a form in Form Builder, you give it an app name and form name. Let's say you picked "my-app" and "my-form". Then your form will be available at:

http://localhost:8080/orbeon/fr/my-app/my-form/new

In this URL:

  • The host name and port (here: localhost:8080) will depend on the server and port on which you deployed Orbeon Forms.
  • The context (here: /orbeon) depends on where you deployed Orbeon Forms on your application server (by default, it be /orbeon).

From your application, you can point users to the form, with a regular URL, and if you want to know about the data they have entered, you can setup the workflow-send button to POST back the XML with the data entered by users to your application.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文