我只是想在我的 PhoneGap 应用程序中设置一个功能,在外部浏览器中打开某些链接。该代码似乎在 Android 上运行良好(我没有在 Windows Phone 上进行测试,因为插件信息声称支持尚不存在......),但每次我尝试让它在 iPhone 上运行时模拟器(iOS 5.1),它因以下错误而爆炸:
testCB[3332:c07] CDVPlugin class childbrowser.js (pluginName: ChildBrowser) does not exist.
testCB[3332:c07] ERROR: Plugin 'ChildBrowser' not found, or is not a CDVPlugin. Check your plugin mapping in Cordova.plist.
testCB[3332:c07] -[CDVCommandQueue executePending] [Line 102] FAILED pluginJSON = ["ChildBrowser1249404349","ChildBrowser","showWebPage",["http://www.apple.com",{"showLocationBar":true}]]
我浏览了所有的论坛和这里,我不断看到人们提到更新 Cordova.plist 文件。好的,这就是(请注意,这是针对全新的 Cordova 应用程序,而不是升级或更新,我现在正在使用测试应用程序尝试此操作,以排除我自己的应用程序中的不稳定因素):
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- the standard keys snipped -->
<key>ExternalHosts</key>
<array>
<string>*</string>
</array>
<key>Plugins</key>
<dict>
<key>ChildBrowser</key>
<string>childbrowser.js</string>
<key>ChildBrowserCommand</key>
<string>ChildBrowserCommand</string>
<key>Device</key>
<string>CDVDevice</string>
<key>Logger</key>
<string>CDVLogger</string>
<key>Compass</key>
<string>CDVLocation</string>
<key>Accelerometer</key>
<string>CDVAccelerometer</string>
<key>Camera</key>
<string>CDVCamera</string>
<key>NetworkStatus</key>
<string>CDVConnection</string>
<key>Contacts</key>
<string>CDVContacts</string>
<key>Debug Console</key>
<string>CDVDebugConsole</string>
<key>Echo</key>
<string>CDVEcho</string>
<key>File</key>
<string>CDVFile</string>
<key>FileTransfer</key>
<string>CDVFileTransfer</string>
<key>Geolocation</key>
<string>CDVLocation</string>
<key>Notification</key>
<string>CDVNotification</string>
<key>Media</key>
<string>CDVSound</string>
<key>Capture</key>
<string>CDVCapture</string>
<key>SplashScreen</key>
<string>CDVSplashScreen</string>
<key>Battery</key>
<string>CDVBattery</string>
<key>Globalization</key>
<string>CDVGlobalization</string>
</dict>
</dict>
</plist>
(编辑)在我的 index.html 文件中,我已经包含(我意识到这几乎是不言而喻的。我也意识到很多问题都是由那些不考虑先尝试所有明显的东西的人发布的!):
<script type="text/javascript" src="cordova-2.2.0.js"></script>
<script type="text/javascript" src="childbrowser.js"></script>
我的 js 调用看起来像:
onDeviceReady: function() {
app.receivedEvent('deviceready');
var link = document.getElementById('launchApple');
console.log('derp?');
if(link){
//var cb = ChildBrowser.install();
console.log("We're trying to add a click handler link");
link.addEventListener('click', function() {
console.log('click');
window.plugins.childBrowser.openExternal('http://www.apple.com'); });
}
},
当我单击链接时,我收到上述错误。
我尝试将 childbrowser.js 文件的大小写更改为 ChildBrowser.js。我试过在 iPhone 6 模拟器中运行它。我的插件文件夹包含从https://github.com/alunny/ChildBrowser下载的包中的所有文件
我已经从我的 ~/Library/Application Support 中清除了缓存我已经在项目上尝试过 Clean。
有什么想法吗?我即将开始寻找一只好山羊或一只鸡,以快速祭祀“一次编写,到处运行”的神(我相当肯定他们是骗子 Loki 的后裔)!