ModX Evolution:在页面加载时将变量从 url 传递到表单文本字段
我需要将字符串从 url:
传递
../page.html?code=123456
到表单(modx 中的 eform 片段) 页面仅加载一次(带有 url 和参数的链接) 感谢您的回答...
I need to pass string from url:
../page.html?code=123456
to a form (eform snippet in modx)
just once is page loaded (link with url and parameter)
Thanks for answer...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我的解决方案:
1. 创建一个名为 GetCode
的新代码段
2. 在网页上添加电子表单调用(和片段):
3. 在带有表单代码的 eform 块中添加行:
5. 现在,当您将参数放入 url 中时,例如:
这应该出现在表单中。
My solution:
1. create a new snippet called GetCode
2. Add eform call (and snippet) on webpage:
3. In eform chunk with form code add line:
5. Now when you put parametr in url like:
this should appear in form.
你会像在 php 中一样执行此操作。
如果遇到问题,请查看 modx 错误日志...-
sean
you would do this exactly like you would in php..
If you are having issues, take a peek in the modx error logs...
-sean
KudyKam 的解决方案比 MODX 文档中的官方解决方案更好,他们在其中使用数据库。 http://wiki.modxcms.com/index.php/Populate_eform_with_dynamic_data
Solution by KudyKam is better than official solution in MODX docs, in which they use a database. http://wiki.modxcms.com/index.php/Populate_eform_with_dynamic_data