国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

angular.js - Page jump problem in angular project development
某草草
某草草 2017-05-15 17:12:15
0
2
855

In real project development, there are many pages. Do each page go through an index page? Put a <p ui-view></p> in the index page and then configure many routes. Jump, what about the parameter transfer?

某草草
某草草

reply all(2)
PHPzhong

What you are talking about should be an example of using angularjs to implement a single-page application. Generally, we will put public references and common navigation in the index and then write ng-view in the area where we want to implement the jump module, and then use the app. js configure jump routes and corresponding controllers. Put controllers with similar functions and businesses together like this

洪濤
  1. Yes, SPA single-page application jumps by configuring routes. In HTML, <ui-view></ui-view> is used to define the content jump part. The essence of ui-router is to embed set, so this ui-view can be multi-layered
    2. Parameter configuration, first explain the parameter name in the routing configuration part

        .state("order.detail", {
            url: "/Detail/?:order_id",
            templateUrl: "/detail.html",
            title: "Detail",
            controller: "detailCtrl",
            params: {'order_id': null, 'order_status': null}
          });

In the example, there are two parameters, order_id and order_status. You can splice the parameters into the URL. :order_id is spliced. :order_id就是拼接的
在跳轉(zhuǎn)的過(guò)程中傳遞參數(shù)ui-sref="order.detail({ order_id: order.id })"Pass the parameter ui-sref="order. detail({ order_id: order.id })"

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template