AngularJS ui router custom data

preview_player
Показать описание
pass angular state custom data to controller
pass angular state custom data to view
ui router data property example
ui router custom data example
ui router read custom data from controller

In this video we will discuss how to add custom data to a state in angular.

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.

To add custom data to a state use data property. In the example below, we have added a data a property to the "home" state. The value for this property is a Javascript object that contains our custom data. Along the same lines we have added custom data to the "courses" state.

$stateProvider
.state("home", {
url: "/home",
controller: "homeController",
controllerAs: "homeCtrl",
data: {
customData1: "Home State Custom Data 1",
customData2: "Home State Custom Data 2"
}
})
.state("courses", {
url: "/courses",
controller: "coursesController",
controllerAs: "coursesCtrl",
data: {
customData1: "Courses State Custom Data 1",
customData2: "Courses State Custom Data 2"
}
})

.controller("homeController", function ($state) {

})

[fieldset]
[legend]Home[/legend]
[br /]
[/fieldset]

[fieldset]
[legend]Courses[/legend]
[br /]
[/fieldset]

With all the above changes, the custom data will be displayed on the home view.

Link for all dot net and sql server video tutorial playlists

Link for slides, code samples and text version of the video
Рекомендации по теме
Комментарии
Автор

It's just awesome, i have referred lots of tutorials, videos, but this video tutorial is fantastic, very helpful for the beginners. I thing each and everything you have covered in the tutorials.
Great Job..!
Thanks a lot for the series, Thank you so much

gauravjain
Автор

New videos again great, great, great! Can't wait to watch the next ones! Thank you very much!

stefankrejci
Автор

Your Tutorials are so helpful to the beginners ... Thanks a lot Venkat!

persistencej
Автор

Sir pls Upload the videos of SSRS, SSIS, SSAS also

gagandeepsingh
Автор

Can you please add videos on restangular too?

samrudaanand