博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Angular-Scaled web] 5. ui-router $stateParams for sharing information
阅读量:5248 次
发布时间:2019-06-14

本文共 991 字,大约阅读时间需要 3 分钟。

When using ui-route, we want to pass the information with the url. 

 

Example:

angular.module('categories.bookmarks', [    'categories.bookmarks.create',    'categories.bookmarks.edit',    'eggly.models.categories',    'eggly.models.bookmarks'])    .config(function ($stateProvider) {        $stateProvider            .state('eggly.categories.bookmarks', {                url: 'categories/:category',                views: {                    'bookmarks@': {                        controller: 'BookmarksController',                        templateUrl: 'app/categories/bookmarks/bookmarks.tmpl.html'                    }                }            })    })    .controller('BookmarksController', function ($scope, $stateParams) {        $scope.currentCategory = $stateParams.category;        $scope.stateParams = $stateParams;    });

 

Using :category to pass the params in url. And we can get the params in Controller by using $stateParams.

 

转载于:https://www.cnblogs.com/Answer1215/p/4085692.html

你可能感兴趣的文章
[置顶] Linux终端中使用上一命令减少键盘输入
查看>>
BootScrap
查看>>
Java实现二分查找
查看>>
UIImage 和 iOS 图片压缩UIImage / UIImageVIew
查看>>
php7 新特性整理
查看>>
RabbitMQ、Redis、Memcache、SQLAlchemy
查看>>
03 线程池
查看>>
手机验证码执行流程
查看>>
设计模式课程 设计模式精讲 2-2 UML类图讲解
查看>>
Silverlight 的菜单控件。(不是 Toolkit的)
查看>>
jquery的contains方法
查看>>
linux后台运行和关闭SSH运行,查看后台任务
查看>>
桥接模式-Bridge(Java实现)
查看>>
303. Range Sum Query - Immutable
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
前台freemark获取后台的值
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>