0
$scope.currentLocationPath = $location.path();
$scope.configUserPath = '/configUser';
http://myurl.com/#/configUser/
$scope.editUserPath = '/editUser';
http://myurl.com/#/editUser/1
<div ng-hide="(currentLocationPath === configUserPath || currentLocationPath === editUserPath)>do something</div>
現在の場所を使用してパスを比較しています。クエリ文字列を含まないURLに対してはうまく機能しますが、ユーザーの編集で見られるようにURLの正しいパスをクエリ文字列と比較していません。AngularJS - クエリ文字列を削除してパスを比較します
editUserの後にクエリ文字列を削除して、それを現在の場所と比較するにはどうすればよいですか?