Phonegap / Cordova 1.8.0:子浏览器无法使用onLocationChanged

时间:2012-07-03 08:45:57

标签: ios cordova phonegap-plugins

我正在使用Cordova 1.8.0和旧版本的Childbrowser(新版本似乎不起作用)。

无论如何,直到昨天晚上,这段代码工作没有任何问题,今天早上我点击了运行,cb.onLocationChange停止工作。

我无法理解这是怎么回事。有没有人可以给我提示? onLocationChange doest返回任何console.log :(

        var cb = ChildBrowser.install(); // install our ChildBrowser ( cb )
        console.log("AAAA We don't have a user saved yet");
        oauth = OAuth(options);
        oauth.get('https://api.twitter.com/oauth/request_token',
            function(data) {
                console.log("AAAA Sent request token");
                requestParams = data.text;
                cb.showWebPage('https://api.twitter.com/oauth/authorize?'+data.text); // This opens the Twitter authorization / sign in page     
                console.log("AAAAAA onLocation chenge");
                cb.onLocationChange = function(loc){ console.log("AAAAAA"); Twitter.success(loc); }; // When the ChildBrowser URL changes we need to track that
            },
            function(data) { 
                console.log("ERROR: "+data);
            }
        );

1 个答案:

答案 0 :(得分:1)

我遇到同样的问题时发现了这个问题。答案在这里 - Reference Error: Can't find variable: ChildBrowser, Cordova 1.7.0, jQueryMobile 1.0.1, iOS 5.1

ChildBrowser.install()中的简短答案不再适用。将代码的第一行更改为

cb = window.plugins.childBrowser;