Table of Contents
' + $stateParams.blogID + '
Home Web Front-end HTML Tutorial ui-router的使用_html/css_WEB-ITnose

ui-router的使用_html/css_WEB-ITnose

Jun 24, 2016 am 11:37 AM

使用时需要ui中用ui-view指令指定 如:

<div ui-view></div>
Copy after login

首先配置注册 ui-route

var mainModule = angular.module('main', ['ui.router']);
Copy after login

由于run方法是在angular启动的时候就会执行的,可以将路由跳转控制放到run方法中,比如某种条件下禁止路由跳转 另外全局事件也可以放到run方法中

mainModule.run(function($rootScope,$state,$http,$stateParams){    //这里把$state和$stateParams这两个对象放到$rootScope上,方便其它地方引用和注入。    $rootScope.$state = $state;    $rootScope.$stateParams = $stateParams;    $rootScope.$on('$stateChangeStart', function(event, toState,                        toParams, fromState, fromParams) {                    if (toState.name === "yxlpm") {                        // 这里加入调出影响力排名页面是做出的判断                        //使用jquery不使用$http是应为$http的请求是不定时的,等请求完成页面已经完成了跳转,evet事件就无效                        // 如果好友公司数少于5个侧不显示页面,跳出提示                        $.ajax({                                    method : 'POST',                                    url : '../userInfo/influence',                                    async: false,                                    headers : {                                        'token' : $rootScope.token                                    }                                }).success(                                function(resp, status, headers, config) {                                    if (resp.code === 8037) {//                                        $state.go('wo');   路由跳转go方式                                        event.preventDefault();// 取消默认跳转行为                                        alert('您的影响力不足无法查看');                                    }                                });                    }                });})
Copy after login

基本路由配置

mainModule.config(function($stateProvider, $urlRouterProvider) {        // $urlRouterProvider.otherwise('../dongtai/smdt.html');        // //在配置(状态配置和when()方法)中没有找到url的任何匹配        $stateProvider.state('news', {                    url : '/news/:type', // 消息   type为参数类型  取参数可用$stateParams.type                    templateUrl : '../grsz/news.html'                }).state('sousuo.zrssjg', {                      url : '/zrssjg/:topic', // 找人结果                    templateUrl : '../sousuo/zrssjg.html'                }).state('zwxq', {                    //注意这边嵌套视图的写法                    url : '/zwxq/:id', // 职位详情                    views : {                        'view1' : {                            templateUrl : '../wo/zwxq.html'                        },                        ‘view2’:{                            templateUrl : '../wo/zlxq.html'                        }                    }                })    });    html:    //传参方式1、/news/1      反斜杆后面为参数    <a class="menu-item" href="#/news/1" hideblock>          消息    </a>    //传参方式2、topic为参数名    用.号来控制sousuo页面下的子页面    <a class="tag" ui-sref="sousuo.zrssjg({topic:ChildrenPosition.name})"</a>    //指定路由    <div ui-view="view1"></div>     <div ui-view="view2"></div>(7) 事件
Copy after login

state事件

    //状态改变之前触发    $rootScope.$on('$stateChangeStart', function(event, toState, toParams, fromState, fromParams){ ... })    $rootScope.$on('$stateNotFound', function(event, unfoundState, fromState, fromParams){ ... })    //example    // somewhere, assume lazy.state has not been defined$state.go("lazy.state", {a:1, b:2}, {inherit:false});// somewhere else$rootScope.$on('$stateNotFound', function(event, unfoundState, fromState, fromParams){     console.log(unfoundState.to); // "lazy.state"    console.log(unfoundState.toParams); // {a:1, b:2}    console.log(unfoundState.options); // {inherit:false} + default options})//状态改变成功之后触发    $rootScope.$on('$stateChangeSuccess', function(event, toState, toParams, fromState, fromParams){ ... })    $rootScope.$on('$stateChangeError', function(event, toState, toParams, fromState, fromParams, error){ ... })
Copy after login

view事件

    View被加载但是DOM树构建之前时:     $scope.$on('$viewContentLoading', function(event, viewConfig){ ... });     View被加载而且DOM树构建完成时:     $scope.$on('$viewContentLoaded', function(event){ ... }); 
Copy after login

另一种传参方式

    $state.go('sousuo.dtssjg', {topic : $scope.keyWord}, {reload : true});    由于html中无法动态绑定ui-sref中的路径,可以在控制器中通过state来做跳转
Copy after login

路由中的其他配额

    templateProvider:返回HTML字符串的函数     $stateProvider.state(‘blog.detail', {    templateProvider: function ($timeout, $stateParams) {      return $timeout(function () {        return '<h1 id="stateParams-blogID">' + $stateParams.blogID + '</h1>'      }, 100);    }  })  //以下几个项目中并没有进行配置,而是将功能分化到对控制器和指令中,具体功能也不太理解。可参照官方文档:https://github.com/angular-ui/ui-router/wiki  controller、controllerProvider:指定任何已经被注册的控制器或者一个作为控制器的函数   resolve:在路由到达前预载入一系列依赖或者数据,然后注入到控制器中。   data:数据不会被注入到控制器中,用途是从父状态传递数据到子状态。   onEnter/onExit:进入或者离开当前状态的视图时会调用这两个函数 关于angulsrjs入门介绍,可参阅这篇博文:http://www.zouyesheng.com/angular.html#toc66
Copy after login

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is HTML easy to learn for beginners? Is HTML easy to learn for beginners? Apr 07, 2025 am 12:11 AM

HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

What is an example of a starting tag in HTML? What is an example of a starting tag in HTML? Apr 06, 2025 am 12:04 AM

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Apr 04, 2025 pm 11:54 PM

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? Apr 05, 2025 am 06:15 AM

To achieve the effect of scattering and enlarging the surrounding images after clicking on the image, many web designs need to achieve an interactive effect: click on a certain image to make the surrounding...

HTML, CSS, and JavaScript: Essential Tools for Web Developers HTML, CSS, and JavaScript: Essential Tools for Web Developers Apr 09, 2025 am 12:12 AM

HTML, CSS and JavaScript are the three pillars of web development. 1. HTML defines the web page structure and uses tags such as, etc. 2. CSS controls the web page style, using selectors and attributes such as color, font-size, etc. 3. JavaScript realizes dynamic effects and interaction, through event monitoring and DOM operations.

How to implement adaptive layout of Y-axis position in web annotation? How to implement adaptive layout of Y-axis position in web annotation? Apr 04, 2025 pm 11:30 PM

The Y-axis position adaptive algorithm for web annotation function This article will explore how to implement annotation functions similar to Word documents, especially how to deal with the interval between annotations...

See all articles