我正在调用自己的phonegap service:
PhoneGap.exec(
success, //success
fail, //fail
"Cdc", //service
"Call", //action
path //args
);
由于我只在Windows Phone上提供此服务...如何测试服务是否存在?
答案 0 :(得分:0)
在较新版本的phonegap中,您可以使用plugins.cdc.call();
来调用插件。现在您可以轻松检查它是否存在:
if ((typeof plugins !== "undefined") && (typeof plugins.cdc !== "undefined"))
{
// good to go
}