是否可以使用 ajaxify drupal 多步表单?
似乎很难ajaxify drupal多步表单(加载下一步而不刷新页面)。我用谷歌搜索但没有找到任何解决方案。 有人知道该怎么做吗?
It seems to be difficult to ajaxify a drupal multistep form(loading next step without page refresh).I googled it but I didn't find any solution.
Does anybody know how to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在最近的一个项目中,我使用 ctools 向导来获取多步骤表单,我发现这是制作多步骤表单的非常好的方法。该向导还支持使用ajax 加载页面。
我在这里找到了教程: http:// /www.nicklewis.org/using-chaos-tools-form-wizard-build-multistep-forms-drupal-6 当我这样做时非常有用。如果你设置 'ajax' => $form_info 中为 TRUE 那么你就应该开始了。
使用缓存(他们对袋熊的命名)来存储您在表单中移动时各个步骤的结果,然后在最后对它们执行一些操作。
Ctools链接:http://drupal.org/project/ctools
In a recent project I use ctools wizard to get a multi-step form, which I found to be a really good way of making a multi-step form. This wizard also supports using ajax to load the pages.
I found the tutorial here: http://www.nicklewis.org/using-chaos-tools-form-wizard-build-multistep-forms-drupal-6 pretty useful when I was doing it. If you set 'ajax' => TRUE in the $form_info then you should get going.
Use the cache (what they are naming the wombat) to store the results from the various steps as you move through the form and then do something with them at the end.
Ctools link: http://drupal.org/project/ctools