在 xml 解析过程中检查 checkbox.name,这样我就不会重复复选框
我需要解析一个包含许多元素及其元素属性值的 xml 文档,以创建新的复选框,并将属性值作为复选框的名称。在我的应用程序中,我已经将其中一些属性值硬编码到复选框中。因此我的问题是,有没有办法让我检查这些是否已经创建?如果是的话,我什么也不做。如果没有,我将创建新的复选框。
下面是一个要解析的 XML 文档的示例:
<target name="number1" if="nameofcheckbox1">
...
</target>
<target name="number2" if="nameofcheckbox2">
...
</target>
在上面的示例中,我已经硬编码了一个复选框并将其命名为:nameofcheckbox1CheckBox。然后我将解析该文档并为“number2”创建新的复选框。它将被称为 nameofcheckbox2CheckBox。因此,我在这里需要一些东西来确保我不会复制另一个名为 nameofcheckbox1CheckBox 的复选框。非常感谢
I need to parse a xml document with many elements with their element's attribute value to create new checkbox with the attribute value as the name of the checkbox. In my application I've already hard coded some of these attribute value into checkboxes. Therefore my question is, is there a way for me to check if these have already been created? If yes, I will not do anything. If no, I will then create new checkbox.
Here is an example of an XML document to be parsed:
<target name="number1" if="nameofcheckbox1">
...
</target>
<target name="number2" if="nameofcheckbox2">
...
</target>
In the above example, I've already hard coded a checkbox and called it: nameofcheckbox1CheckBox. Then i will parse this document and new checkbox will be created for the "number2". It will be called nameofcheckbox2CheckBox. Hence, I will need something here to make sure that i do not duplicate another checkbox called nameofcheckbox1CheckBox. Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)