Json1:
{
"a": [ 1, 2, 3, 5 ],
"b": "b1"
}
Json2:
{
"a": [ 2, 3, 4 ],
"b": "b2"
}
Difference Result:
{
"changed": {
"a": [ 2, 3, 4, 5 ],
"b": "b2"
}
}
Difference Result (showOriginalValues=True) :
{
"changed": {
"a": [ 2, 3, 4, 5 ],
"b": "b1"
}
}
"The comparison results of "a" cannot be distinguished from each other, and 5 has been deleted. Why does it appear in the results?"
Json1:
{
"a": [ 1, 2, 3, 5 ],
"b": "b1"
}
Json2:
{
"a": [ 2, 3, 4 ],
"b": "b2"
}
Difference Result:
{
"changed": {
"a": [ 2, 3, 4, 5 ],
"b": "b2"
}
}
Difference Result (showOriginalValues=True) :
{
"changed": {
"a": [ 2, 3, 4, 5 ],
"b": "b1"
}
}
"The comparison results of "a" cannot be distinguished from each other, and 5 has been deleted. Why does it appear in the results?"