我有一个使用Localytics服务的PhoneGap应用程序,我想跟踪某个事件,所以从某个时刻的Javascript代码我想用几个参数调用本机函数。然后,此本机函数将调用Localytics中的事件跟踪功能,如下所示:
NSDictionary *dictionary =
[NSDictionary dictionaryWithObjectsAndKeys:
@"miles per hour",
@"display units",
@"yes",
@"blank screen",
nil];
[[LocalyticsSession sharedLocalyticsSession] tagEvent:@"Options saved" attributes:dictionary];
您是否有从JS调用本地代码并传递参数的示例?
谢谢!
答案 0 :(得分:0)
有很多JavaScript的例子 - > Java在https://github.com/purplecabbage/phonegap-plugins
的Phonegap插件中调用