我在Phonegap 5.5.0项目中安装了最新版本的InAppBrowser插件(1.3.0)。但是我无法访问event.url
属性。它抛出的错误是:拒绝访问属性“toJSON”的权限。
View = React.createClass({
onAction: {
this.setState({
// Some state
}, (function (_this) {
loginUrl = "url";
_this.popup = cordova.InAppBrowser.open(loginUrl, "_blank", "hardwareback=no,zoom=no,toolbar=no");
_this.popup.addEventListener("loadstop", _this.onBrowserLoad);
})(this));
},
onBrowserLoad: function (event) {
// This line throws the error
console.warn(event.url);
}
}