Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
而 PHP 可以接受来自外部站点的传递表单数据。
plone / ploneformgen 可以做同样的事情吗?
可以通过url提交数据吗?
您可以使用每个字段的“覆盖”选项卡来传递任意 TALES 表达式,例如
request/some_value|nothing
为了根据来自浏览器请求的数据提供默认值(在这种情况下为“some_value”参数)。
您可以覆盖表单提交“操作”。不过,这将导致表单绕过所有服务器端有效性检查。
或者,研究一些将数据提交给外部服务的 PloneFormGen 插件。这些将数据重新发布到外部服务。这需要在 Python 中完成,以管理数据卫生并处理外部服务的超时问题。