在需要XML 文件的 Diff 工具之后?我现在正在寻找 JSON 数据的差异工具。
相同的要求:
- 自由
- 基于树,而不是基于行;即,如果一个部分已移动到同一级别/同一树枝中的不同位置,则不应报告差异。
- JSON 数组中的顺序也无关紧要;交换的元素应该被视为“没有区别”。
- 应标记所有差异,最好在并排视图中使用指示符或连接不同部分的线
- 有网络版就好了
这两个文件应报告为“相同”:
{
"errormessage": "",
"success": 1,
"items": [
{
"id": 20100,
"name": "AA3 met extra tekst2"
},{
"name": "Indirecte uren\\Ziekte",
"id": 34
}],
"type": "ttgetlistresult"
}
和
{
"errormessage": "",
"items": [
{
"id": 34,
"name": "Indirecte uren\\Ziekte"
},{
"id": 20100,
"name": "AA3 met extra tekst2"
}],
"success": 1,
"type": "ttgetlistresult"
}