本文整理汇总了C++中JSContext::CreateArray方法的典型用法代码示例。如果您正苦于以下问题:C++ JSContext::CreateArray方法的具体用法?C++ JSContext::CreateArray怎么用?C++ JSContext::CreateArray使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JSContext
的用法示例。
在下文中一共展示了JSContext::CreateArray方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: RouteDescription_to_js
JSObject RouteDescription_to_js(const JSContext& js_context, const RouteDescription& config)
{
auto object = js_context.CreateObject();
std::vector<JSValue> js_inputs;
for (const auto v : config.inputs) {
js_inputs.push_back(js_context.CreateNumber(static_cast<std::uint32_t>(v)));
}
std::vector<JSValue> js_outputs;
for (const auto v : config.outputs) {
js_outputs.push_back(js_context.CreateNumber(static_cast<std::uint32_t>(v)));
}
object.SetProperty("inputs", js_context.CreateArray(js_inputs));
object.SetProperty("outputs", js_context.CreateArray(js_outputs));
return object;
}
示例2: Emails_to_js
JSObject Emails_to_js(const JSContext& js_context, const Emails& emails)
{
auto object = js_context.CreateObject();
std::vector<JSValue> js_home;
for (const auto email : emails.home) {
js_home.push_back(js_context.CreateString(email));
}
object.SetProperty("home", js_context.CreateArray(js_home));
std::vector<JSValue> js_work;
for (const auto email : emails.work) {
js_work.push_back(js_context.CreateString(email));
}
object.SetProperty("work", js_context.CreateArray(js_work));
std::vector<JSValue> js_other;
for (const auto email : emails.other) {
js_other.push_back(js_context.CreateString(email));
}
object.SetProperty("other", js_context.CreateArray(js_other));
return object;
};
示例3: PushNotificationConfig_to_js
JSObject PushNotificationConfig_to_js(const JSContext& js_context, const PushNotificationConfig& config)
{
auto object = js_context.CreateObject();
object.SetProperty("callback", config.callback);
object.SetProperty("error", config.error);
object.SetProperty("success", config.success);
std::vector<JSValue> js_types;
for (const auto t : config.types) {
js_types.push_back(js_context.CreateNumber(Titanium::Network::Constants::to_underlying_type(t)));
}
object.SetProperty("types", js_context.CreateArray(js_types));
return object;
}
开发者ID:appcelerator-forks,项目名称:appcelerator.titanium_mobile_windows,代码行数:15,代码来源:PushNotificationConfig.cpp
示例4: ShowContactsParams_to_js
JSObject ShowContactsParams_to_js(const JSContext& js_context, const ShowContactsParams& dict)
{
auto object = js_context.CreateObject();
object.SetProperty("animated", js_context.CreateBoolean(dict.animated));
object.SetProperty("cancel", dict.callbacks.cancel);
std::vector<JSValue> js_fields;
for (const auto f : dict.fields) {
js_fields.push_back(js_context.CreateString(f));
}
object.SetProperty("fields", js_context.CreateArray(js_fields));
object.SetProperty("selectedPerson", dict.callbacks.selectedPerson);
object.SetProperty("selectedProperty", dict.callbacks.selectedProperty);
return object;
};
开发者ID:appcelerator-forks,项目名称:appcelerator.titanium_mobile_windows,代码行数:16,代码来源:ShowContactsParams.cpp