プラグインが存在するかどうかをphoneGap.jsで確認する方法はありますか?アプリに条件付きロジックを持たせて、プラグインが存在しない場合にプラグインのコンテンツを使用しないようにします。
質問する
2221 次
2 に答える
2
if (typeof window.plugins.myplugin !== 'undefined'){
// plugin is available
}
于 2012-02-09T13:09:29.617 に答える
1
window.PhoneGap.resources オブジェクトを見てください。
window.PhoneGap.resources
Object
• accelerometer: true
• app: true
• base: true
• battery: true
• camera: true
• capture: true
• compass: true
• contact: true
• crypto: true
• device: true
• file: true
• filetransfer: true
• geolocation: true
• media: true
• network: true
• notification: true
• position: true
• storage: true
• __proto__: Object
于 2012-05-18T14:37:22.157 に答える