I次のコード(AJS +コルドバ)を持っている:外部リンクにリダイレクトせずにアプリケーションでリダイレクトリンクを開くにはどうすればいいですか?
$scope.update = function() {
myService.update()
.then(function (response) {
$scope.result = response.data;//prints [Object object]
console.log("Success!..." + response.data + "result.." + $scope.result);
angular.forEach($scope.result, function(value, key){
console.log(key + ': ' + value); //prints success:true
// $location.url(""+urlToGo);
$window.location.href = urlToGo;
})
},
function (error) {
$scope.status = 'Unable toget resposne ' + error;
});
};
、$ window.location.href = urlToGo。モバイルブラウザで新しいウィンドウを開きます。つまり、ユーザーは自分のアプリを離れることになります。だから、私は自分のアプリの中にAngularやCordovaを使ってブラウザを表示せずにそれを扱うことができるのですか?
うまくいけばこのリンクが役立つはずです - http://stackoverflow.com/questions/36948337/angular-marked-and-inappbrowser-opening-all-links-in-the-system-browser – Gandhi