本文整理汇总了C++中JsonObject::createNestedObject方法的典型用法代码示例。如果您正苦于以下问题:C++ JsonObject::createNestedObject方法的具体用法?C++ JsonObject::createNestedObject怎么用?C++ JsonObject::createNestedObject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JsonObject
的用法示例。
在下文中一共展示了JsonObject::createNestedObject方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: AddToJson
const void FirebaseCloudMessaging::AddToJson(
const FirebaseCloudMessage& message, JsonObject& json) const {
if (!message.collapse_key.empty()) {
json["collapse_key"] = message.collapse_key.c_str();
}
json["priority"] = message.high_priority ? "high" : "normal";
json["delay_while_idle"] = message.delay_while_idle;
if (message.time_to_live > 0 && message.time_to_live < 2419200) {
json["time_to_live"] = message.time_to_live;
}
if (!message.data.empty()) {
JsonObject& data = json.createNestedObject("data");
for (const auto& datum : message.data) {
data[datum.first.c_str()] = datum.second.c_str();
}
}
if (!message.notification.title.empty() || !message.notification.body.empty()) {
JsonObject& notification = json.createNestedObject("notification");
if (!message.notification.title.empty()) {
notification["title"] = message.notification.title.c_str();
}
if (!message.notification.body.empty()) {
notification["body"] = message.notification.body.c_str();
}
}
}