我目前煎茶觸摸部署爲Android OS 2.實施Childbrowser在煎茶觸摸使用電話峽
我已經包括了「科爾多瓦 - 2.2.0.js」路徑「 ChildBrowser.js」在app.json文件
我正在使用Chrome瀏覽器在Windows PC中開發它,並使用Sencha工具和phonegap構建部署到Android設備。
我的樣本代碼是
window.plugins.childBrowser.openExternal( 「http://www.google.com」);
我的webkit瀏覽器中出現以下錯誤。
遺漏的類型錯誤:對象#有沒有方法「高管」
而在我的本機應用程序,我沒有得到任何迴應。
請幫助...我包括我的Main.js文件
謝謝
Main.js文件
Ext.define('Children.view.Main', {
extend: 'Ext.tab.Panel',
xtype: 'main',
requires: [
'Ext.TitleBar',
'Ext.Video'
],
config: {
tabBarPosition: 'bottom',
items: [
{
title: 'Welcome',
iconCls: 'home',
styleHtmlContent: true,
items: [
{
xtype: 'button',
text: 'Open Google',
handler: function(button) {
window.plugins.childBrowser.openExternal('http://www.google.com');
}
}
]
},
{
title: 'Get Started',
iconCls: 'action',
items: [
{
docked: 'top',
xtype: 'titlebar',
title: 'Getting Started'
},
{
xtype: 'video',
url: 'http://av.vimeo.com/64284/137/87347327.mp4?token=1330978144_f9b698fea38cd408d52a2393240c896c',
posterUrl: 'http://b.vimeocdn.com/ts/261/062/261062119_640.jpg'
}
]
}
]
}
});