在Cordova iOS中,需要使Angular路由与InAppBrowser兼容。要实现这一点,请将以下代码添加到app.js文件中:
app.config(['$provide', function($provide) { $provide.decorator('$browser', ['$delegate', function($delegate) { if (window.cordova) { // Device return function() { return { poll: function() {}, // This is not a proper implementtaion, but it is enough for demostration // purposes. It only checks whether Cordova is already loaded by requesting // it on the window object. // Note: in iOS the local file system requests do not work, so you have to // add 'file://' to your whitelist to let them work. // If you are using InAppBrowser plugin, you should skip the whitelist and // use the cordova.InAppBrowser.open() method. navigate: function(url) { if (url !== 'about:blank') { window.location.href = url; } } }; }; } return $delegate; }]); }]);
这将装饰Angular的$browser服务并更改其导航方法,使其使用InAppBrowser插件而不是默认窗口方法。以这种方式更改后,Angular路由在Cordova iOS上应该起作用。