我正在使用nlohmann::json
,我需要做的就是复制一个JSON对象,然后更改其中的一些键。是否可以更改nlohmann::json
个对象中的键?
基本上我要做的是以下内容:
json obj1 = {"key with space" : 10}
json obj2(obj1);
# .change_key not a real function
obj2.change_key("key with spaces", "key_with_spaces");
.change_key
是我需要帮助的部分。
答案 0 :(得分:1)
执行此操作的唯一方法可能是添加和删除元素:
json obj1 = {"key with space" : 10}
json obj2(obj1);
obj2["key with spaces"] = obj2.at("key_with_spaces");
obj2.erase("key_with_spaces");