博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Angular-Scaled web] 3. Basic State with ui-router
阅读量:5218 次
发布时间:2019-06-14

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

1. Install ui-route, include js file in html and add dependence in js file.

bower install angular-ui-router
angular.module('Eggly', [    'ui.router',    'categories',    'categories.bookmarks'])

 

2. Add config() to the app, inject with $stateProvider.

angular.module('Eggly', [    'ui.router',    'categories',    'categories.bookmarks'])    //inject the stateProvider    .config(function($stateProvider){        $stateProvider            .state('eggly', {                url:'/',   //point to the root url                templateUrl: 'app/categories/categories.tmpl.html',                controller: 'MainCtrl'            })        ;    })

 

3. add ui-view directive to the html

 

4. Add content to the 

categories.tmpl.html

Editing {
{editedBookmark.title}}

 

5. When visiting the page, url should change accordingly, otherwise nothing will show.

old url:http://localhost:63342/eggly/index.start.html
new url:http://localhost:63342/eggly/index.start.html#/

 

Read More:

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

你可能感兴趣的文章
minggw 安装
查看>>
Jquery操作cookie,实现简单的记住用户名的操作
查看>>
[BZOJ1196][HNOI2006]公路修建问题 二分答案+最小生成树
查看>>
PHP基础入门(二)
查看>>
[Luogu P3119] [USACO15JAN]草鉴定Grass Cownoisseur (缩点+图上DP)
查看>>
【原创】大数据基础之Zookeeper(4)应用场景
查看>>
18款在线代码片段测试工具
查看>>
20.C++- &&,||逻辑重载操作符的缺陷、,逗号重载操作符的分析
查看>>
静态变量数组实现LRU算法
查看>>
在SQL中怎么把一列字符串拆分为多列
查看>>
中文系统 上传file的input显示英文
查看>>
css样式写一个三角形
查看>>
比callback更简洁的链式执行promise
查看>>
android permission
查看>>
javascript获取textarea中所选文本的开始位置、结束位置和选择的文本
查看>>
【译】在Asp.Net中操作PDF - iTextSharp - 使用字体
查看>>
事务备份还原分离附加
查看>>
JSch - Java实现的SFTP(文件上传详解篇)
查看>>
一些注意点
查看>>
.net 文本框只允许输入XX,(正则表达式)
查看>>