本文整理汇总了C++中json::Object::addMemberByKey方法的典型用法代码示例。如果您正苦于以下问题:C++ Object::addMemberByKey方法的具体用法?C++ Object::addMemberByKey怎么用?C++ Object::addMemberByKey使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类json::Object
的用法示例。
在下文中一共展示了Object::addMemberByKey方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: update_doc
void BulkBuilder::update_doc(const std::string &index, const std::string &type, const std::string &id, const Json::Object &fields, bool upsert) {
createCommand("update", index, type, id);
Json::Object updateFields;
updateFields.addMemberByKey("doc", fields);
updateFields.addMemberByKey("doc_as_upsert", upsert);
operations.push_back(updateFields);
}
示例2: createCommand
void BulkBuilder::createCommand(const std::string &op, const std::string &index, const std::string &type, const std::string &id = "") {
Json::Object command;
Json::Object commandParams;
if (id != "") {
commandParams.addMemberByKey("_id", id);
}
commandParams.addMemberByKey("_index", index);
commandParams.addMemberByKey("_type", type);
command.addMemberByKey(op, commandParams);
operations.push_back(command);
}