- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个名为projectDet[]的数组。它包含大约 350 个项目。
数组中的EACH项是xml信息(下面是单个项)。每个项目的 xml 格式相同,但 id 和值不同。我更喜欢将所有这些放入一个大的 XML 变量中,我可以使用元素树从该变量中提取元素。现在我不知道如何使用元素树来遍历数组中的 300 个项目。
我有代码检查一组不同的 XML 中的 ID,然后如果 XML 数据 A 中的 ID 与 xml 数据 B 中的 ID 匹配,我会取出“计费小时”并将其添加到匹配的最终 CSV 行中身份证号。这适用于不在数组中的其他 XML。所以我觉得最简单的方法是使用我现有的有效代码,但我需要以某种方式将所有这些条目“合并”到一个变量中,以便可以通过管道传输到现有函数中。
有没有一种方法可以循环遍历这个数组并将每个项目合并到一个 xml 中。它们都具有相同的树结构..即 root/team_member/item 和 root/tasks/item
感谢您的建议。
<root>
<team_members type="list">
<item type="dict">
<id>1137</id>
<cost_rate type="float">76.0</cost_rate>
<budget_spent_percentage type="null" />
<projected_hours type="float">0.0</projected_hours>
<user_id type="int">1351480</user_id>
<total_hours type="float">0.0</total_hours>
<name>Bob R</name>
<budget_left type="null" />
</item>
<item type="dict">
<id>1137</id>
<cost_rate type="null" />
<budget_spent_percentage type="null" />
<projected_hours type="float">2072.0</projected_hours>
<user_id type="null" />
<total_hours type="float">0.0</total_hours>
<name>Samm</name>
<budget_left type="null" />
</item>
</team_members>
<nonbillable_detailed_report_url type="str">/reports/detailed/any</nonbillable_detailed_report_url>
<detailed_report_url type="str">/reports/any</detailed_report_url>
<billable_detailed_report_url type="str">/reports/any</billable_detailed_report_url>
<tasks type="list">
<item type="dict">
<id>1137</id>
<budget_left type="null" />
<budget_spent_percentage type="null" />
<billed_rate type="float">0.0</billed_rate>
<over_budget type="null" />
</item>
<item type="dict">
<id>1137</id>
<budget_left type="null" />
<budget_spent_percentage type="null" />
<billed_rate type="float">0.0</billed_rate>
<over_budget type="null" />
</item>
<item type="dict">
<id>1137</id>
<budget_left type="null" />
<budget_spent_percentage type="null" />
<billed_rate type="float">0.0</billed_rate>
<over_budget type="null" />
<total_hours type="float">0.0</total_hours>
<budget type="null" />
</item>
<item type="dict">
<id>1137</id>
<budget_left type="null" />
<budget_spent_percentage type="null" />
<billed_rate type="float">0.0</billed_rate>
<over_budget type="null" />
<total_hours type="float">0.0</total_hours>
<budget type="null" />
</item>
<item type="dict">
<id>1137</id>
<budget_left type="null" />
<budget_spent_percentage type="null" />
<billed_rate type="float">0.0</billed_rate>
<over_budget type="null" />
<total_hours type="float">0.0</total_hours>
<budget type="null" />
</item>
<item type="dict">
<id>1137</id>
<budget_left type="null" />
<budget_spent_percentage type="null" />
<billed_rate type="float">0.0</billed_rate>
<over_budget type="null" />
<total_hours type="float">0.0</total_hours>
<budget type="null" />
</item>
</tasks>
</root>
最佳答案
考虑使用 append()
追加 <root>
的所有子项迭代地遍历列表。但首先捕获 <root>
的第一个完整元素然后追加:
import xml.etree.ElementTree as ET
cnt = 1
for i in projectDet:
if cnt == 1:
main = ET.fromstring(i)
else:
team = ET.fromstring(i).findall('.//team_members')
main.append(team[0])
nonbill = ET.fromstring(i).findall('.//nonbillable_detailed_report_url')
main.append(nonbill[0])
detrpt = ET.fromstring(i).findall('.//detailed_report_url')
main.append(detrpt[0])
bill = ET.fromstring(i).findall('.//billable_detailed_report_url')
main.append(bill[0])
task = ET.fromstring(i).findall('.//tasks')
main.append(task[0])
cnt+=1
# OUTPUT LARGE XML (main OBJ)
print(ET.tostring(main).decode("UTF-8"))
关于python:使用元素树处理 XML 项目数组,最好是 "merge",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39007027/
我从一个 Mercurial 存储库开始,它有多个我试图 merge 到其中的子存储库,就好像它们一直是主存储库的一部分一样。它们从一开始就不应该是子存储库。 我整理了一个将旧历史转换为单个存储库的过
假设我有一个主线分支和一个功能分支。我已经多次将主线分支 merge 到功能分支中,但只有少数非常小的 merge 冲突。我想清理历史,以便最后只有一个 merge 。执行此操作的最佳方法是什么? 最
首先我使用heapq.merge创建了a&b的两个结果,但是在mergea&b之后,我发现a的列表是空的。 >>> a=merge([1,2],[3,4]) >>> b=merge([4,5],[6,
我和我的团队正在使用远离主轨道 (origin/dev) 的远程分支 (origin/our_feature_branch) 开发一项功能。 Gerrit用于审查等。 使用 git merge ori
这个问题在这里已经有了答案: Is there a way to merge with Strategy "ours" without producing a new commit? (1 个回答)
GitLab 无法自动 merge 请求。所有 merge 请求都会收到消息“此 merge 请求包含必须解决的 merge 冲突。您可以在命令行上手动尝试” 消息似乎不正确,我通过使用“git br
git 有没有办法在不 merge 文件的情况下 merge 两个分支?换句话说就是绘制 merge 箭头。 假设我有分支 A 和 B。我需要将分支 B merge 到 A,但不需要 B 中的所有更改
我想使用提供 git 集成的流行的开源问题跟踪器 (Redmine)。不幸的是,跟踪器中的每个项目只能与一个 git repo 相关联。在跟踪器中创建多个项目不是我理想的设置。 考虑到这一点,我尝试使
在我们的存储库中,我们遵循基于 git-flow 的工作流程。我们有一个已完成的发布(安装在生产环境中),因此发布分支已 merge 到主分支中。 B---C---D---E [release
git merge 命令有一个执行快进 merge 的选项,但这不是我想要的,因为如果它不能执行快进 merge ,它会使用普通 merge . 是否有一个 git 命令仅执行快进 merge (从跟
尝试合并 TFS2008 时出现此错误。源分支或目标分支上都没有挂起的更改。 TF14083: The item {0} has a pending merge from the current me
为了更好地理解这些操作,我想知道 github 或 gitlab 到底是如何 merge 这些请求的。当压缩、 rebase 、 merge ......时详细执行哪些 git 命令? 最佳答案 PR
为了更好地理解这些操作,我想知道 github 或 gitlab 到底是如何 merge 这些请求的。当压缩、 rebase 、 merge ......时详细执行哪些 git 命令? 最佳答案 PR
我试图将提交的一部分从默认分支(不是所有文件和其他文件的部分) merge 到一个命名分支。我试过 graft ,但它只需要整个提交,而没有给我选择的机会。这将如何完成? 例子: A---B---C-
我正在进行 merge ,此时我已准备好提交,但我在 TortoiseHg 中的提交对话框显示许多文件已修改,但是当我与 parent 进行比较时,它说所有文件都是二进制相等的。 我没有也从未有过 e
我已经尝试了以下几种变体,但我仍然遇到错误。有什么办法可以解决这个问题。 DB2 10.1(DB2 for z/OS V10) 对于以下 MERGE INTO TRGT t USING SRC s O
我的数据库模型有用户和 MAC 地址。一个用户可以有多个MAC地址,但一个MAC只能属于一个用户。如果某个用户设置了他的 MAC,并且该 MAC 已经链接到另一个用户,则现有关系将被删除,并在新所有者
假设我有一个新功能,所以我创建了一个新分支。这个分支是一个会持续很长时间的副项目,所以我最终将 master merge 回它以使其保持最新状态。这已经发生了 50 次,因为我一直在更新它并消除该功能
过去几个小时我在 Mercurial 中进行了一次巨大的 merge 。 merge 131 个文件后,我的 merge 工具 meld 崩溃,显示 python 回溯。在尝试退出 meld 时,我无
我有一个关于 git merge 的问题。假设我的存储库中有两个分支(本地和远程):master 和 test。当我在测试分支上工作时,主分支被其他人更新了。在终端中,我写: git checkout
我是一名优秀的程序员,十分优秀!