XML - 需要通过循环添加更多子节点
<field name="dob_day" type="list" default="select"
description="COM_USERS_REGISTER_DOB_DAY_DESC"
filter="string"
label="COM_USERS_REGISTER_DOB_DAY_LABEL"
message="COM_USERS_REGISTER_DOB_DAY_MESSAGE"
required="true"
>
<option value="select">Day</option>
<option value="1">1</option>
.......
.......
</field>
这是 joomla 用户注册.xml 中的 xml
我想在循环中添加天数或类似的内容:
for(i=1; i<=31;<i++):
<option value="i">i</option>
endfor
如何在 XML 中执行此操作?
<field name="dob_day" type="list" default="select"
description="COM_USERS_REGISTER_DOB_DAY_DESC"
filter="string"
label="COM_USERS_REGISTER_DOB_DAY_LABEL"
message="COM_USERS_REGISTER_DOB_DAY_MESSAGE"
required="true"
>
<option value="select">Day</option>
<option value="1">1</option>
.......
.......
</field>
This is the xml in joomla user registration.xml
I want to add days in a loop or something like:
for(i=1; i<=31;<i++):
<option value="i">i</option>
endfor
How can I do this in XML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你为什么要尝试使用循环来实现这一点。您只需手动编写这些选项即可。此外,您不能在 xml 文件中使用任何语言。
如果你想要简单的方法来下拉选择特定范围的数字,有一个特殊的 Joomla 字段,称为“整数”
Why are you trying to use a loop for this. You can simply write these options manually. Besides you can not use any language in xml files.
If you wanted simple way for drop-down select with specific range of numbers there is a special Joomla field called "integer"
如果您想在 Joomla 1.6/1.7 中扩展表单,最好的选择是使用插件并将自己附加到 onFormPrepare 事件,这使您可以扩展表单,特别是使用您自己的附加选项覆盖现有元素,等等。看看 Joomla 配置文件插件,它就是这样做的。
If you want to extend a form in Joomla 1.6/1.7, your best bet is to use a plugin and attach yourself to the onFormPrepare event, which gives you the possibility to extend the form and especially overwrite existing elements with your own with additional options, etc. Look at the Joomla profile plugin, which does just that.