0

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

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

我不明白这怎么可能。有没有人可以给我提示?onLocationChange 不会返回任何 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);
            }
        );
4

1 回答 1

1

当我遇到同样的问题时,我发现了这个问题。答案在这里 - 参考错误:找不到变量:ChildBrowser、Cordova 1.7.0、jQueryMobile 1.0.1、iOS 5.1

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

cb = window.plugins.childBrowser;
于 2012-08-20T18:58:52.777 回答