AngularJS ui router optional parameters



5
59626

angularjs ui router optional params ui router url optional parameters ui router optional url params angular ui router optional url parameter ui-router optional state parameters angular activate state programmatically angular $state.go params angular $state.go with parameters $state.go pass object angular $state.go example angular state go params In this video we will discuss 1. How to use optional URL parameters with ui router 2. Programmatically activating a state using $state service go method Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help. https://www.youtube.com/channel/UC7sEwIXM_YfAMyonQCrGfWA/?sub_confirmation=1 With ngRoute module to make a parameter optional we include a question mark (?) at the end of the parameter name. With ui-router the parameters are optional by default, so there is nothing special that we have to do. Let us understand ui-router optional parameters with an example. Here is what we want to do. On the list of students page, we want to search employees by name. For example if we type "Ma" and click search button, on the subsequent page we want to display all the student names that start with "Ma". The name parameter value "ma" should be passed in the URL as shown below http://localhost:51983/#/studentsSearch/ma On the other hand, if we do not enter any name in the search text box and click search button, on the subsequent page we want to display all the student names. In this case the name parameter value should not be passed in the URL. The URL should be as shown below. http://localhost:51983/#/studentsSearch/ So in summary, the name parameter should be optional. Here are the steps. Step 1 : Define studentsSearch state. Notice in the url property we have included name parameter. Notice, we have not done anything special to make it optional. By default UI router parameters are optional. .state("studentsSearch", { url: "/studentsSearch/:name", templateUrl: "Templates/studentsSearch.html", controller: "studentsSearchController", controllerAs: "studentsSearchCtrl" }) Step 2 : The studentSearch() function that gets called when the search button is clicked is in studentsController function. Notice we are using $state service go() method to activate studentsSearch state. We are also passing a value for the name parameter. If there is something typed in the search text box, the value is passed in the URL to the state, otherwise nothing is passed. So name URL parameter is effectively optional. .controller("studentsController", function (studentslist, $state, $location) { var vm = this; vm.studentSearch = function () { $state.go("studentsSearch", { name: vm.name }); } vm.reloadData = function () { $state.reload(); } vm.students = studentslist; }) Step 3 : Modify studentsSearchController function to retrieve name URL parameter value. Notice we are using $stateParams service to retrieve name URL parameter value. .controller("studentsSearchController", function ($http, $stateParams) { var vm = this; if ($stateParams.name) { $http({ url: "StudentService.asmx/GetStudentsByName", method: "get", params: { name: $stateParams.name } }).then(function (response) { vm.students = response.data; }) } else { $http.get("StudentService.asmx/GetAllStudents") .then(function (response) { vm.students = response.data; }) } }) Link for all dot net and sql server video tutorial playlists https://www.youtube.com/user/kudvenkat/playlists?sort=dd&view=1 Link for slides, code samples and text version of the video http://csharp-video-tutorials.blogspot.com/2016/04/angularjs-ui-router-optional-parameters.html

Published by: kudvenkat Published at: 7 years ago Category: آموزشی