XML - 需要通过循环添加更多子节点

发布于 2024-12-06 21:53:37 字数 699 浏览 1 评论 0原文

<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 技术交流群。

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

发布评论

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

评论(2

⒈起吃苦の倖褔 2024-12-13 21:53:37

你为什么要尝试使用循环来实现这一点。您只需手动编写这些选项即可。此外,您不能在 xml 文件中使用任何语言。

如果你想要简单的方法来下拉选择特定范围的数字,有一个特殊的 Joomla 字段,称为“整数”

<field name="dob_day" type="integer" default="0"
    label="COM_USERS_REGISTER_DOB_DAY_LABEL"
    description="COM_USERS_REGISTER_DOB_DAY_DESC"
    message="COM_USERS_REGISTER_DOB_DAY_MESSAGE"
    first="0"
    last="31"
    step="1"
    required="true"
/>

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"

<field name="dob_day" type="integer" default="0"
    label="COM_USERS_REGISTER_DOB_DAY_LABEL"
    description="COM_USERS_REGISTER_DOB_DAY_DESC"
    message="COM_USERS_REGISTER_DOB_DAY_MESSAGE"
    first="0"
    last="31"
    step="1"
    required="true"
/>
千紇 2024-12-13 21:53:37

如果您想在 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.

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