-2
私はこのウェブサイトのように、モーダルウィンドウ開いて別のルーティングをしたいと思いhttp://architizer.com/projects/rauchkuchlhaus-auf-der-seewiese-am-schliersee-1/モーダルウィンドウを動的コンテンツを開いてURLを変更するにはどうすればいいですか?
私はこのウェブサイトのように、モーダルウィンドウ開いて別のルーティングをしたいと思いhttp://architizer.com/projects/rauchkuchlhaus-auf-der-seewiese-am-schliersee-1/モーダルウィンドウを動的コンテンツを開いてURLを変更するにはどうすればいいですか?
フローは次のとおりです。
onEnter
プロパティ(内部
ui-sref="home({foo: 'fooVal1'})"
。あなたはより説明的だろui-router modal
$stateProvider.state("items.add", {
url: "/add",
onEnter: ['$stateParams', '$state', '$modal', '$resource', function($stateParams, $state, $modal, $resource) {
$modal.open({
templateUrl: "items/add",
resolve: {
item: function() { new Item(123).get(); }
},
controller: ['$scope', 'item', function($scope, item) {
$scope.dismiss = function() {
$scope.$dismiss();
};
$scope.save = function() {
item.update().then(function() {
$scope.$close(true);
});
};
}]
}).result.finally(function() {
$state.go('^');
});
}]
});
のための一般的な質問に答えを見つけることができますか?あなたの質問を読んだユーザーは、このウェブサイトから離れることなく、あなたが望むものを正確に把握する必要があります。 –