あるイベントで動的に変化する入力フィールドがあります。
<input name="selectedId" id="selectedId" ng-model="selectedId" type="hidden" on-change="setUrl">
ここで、ページが変更されたときに、入力フィールドに存在するその ID にページをリダイレクトしたいと考えています。
私のコントローラー:
var app = angular.module("myApp", []).
config(function($routeProvider, $locationProvider) {
$routeProvider.
when("/a1", { templateUrl: "partials/page1.html"}).
when("/a2", { templateUrl: "partials/page2.html"}).
otherwise( { redirectTo: "/a1" });
});
app.controller("MainCtrl", function($scope, $location) {
$scope.setUrl=function($scope){
if ($scope.selectedId) {
alert($scope.selectedId);
}
else{
alert("Out of scope");
}
//$location.path($scope.selectedId);
};
ここでは、入力フィールドの値をスコープに入れることができません。setUrl()
URLをリダイレクトできるようにトリガーすることさえできません。
私は AngularJS を初めて使用するので、概念を理解する必要があります。