私は私の設定角度1.4.8と角度UI-ルータ0.2.18
を使用しています:私は何をしたいか
$stateProvider
.state('searchScreen', {
url:'/offers/:mode?id',
templateUrl: 'offerssearch',
controller: 'SearchController as search'
})
はバインドすることですボタンでURLを変更する機能は、ここに私の関数である。
search.createLink = function() {
$state.go('searchScreen', {url:'/offers/link?id=234'});
}
と私は私のURLが関数呼び出しの後に次のようになりたい:
http://localhost:8080/#/offers/link?id=234
しかし/offers/link?id=234
http://localhost:8080/#/offers/
です私が欲しいもの!大変ありがとうございました! :) – zaqpiotr