Angular UI Router-在url中插入param

时间:2016-03-17 19:35:56

标签: javascript angularjs angularjs-scope angular-ui-router angularjs-ng-repeat

处理一个项目,我需要根据我在网址中传递的param / id来显示网址链接和呈现数据。在以下链接中,AWS是id。

链接: http://link.com/Inventory/ListInventory/TID/AWS/JSON

链接: http://link.com/Inventory/ListInventory/TID/param/JSON

enter image description here

目前,数据会根据我从下拉菜单中选择的ID进行渲染,但网址不会更改。我有一些代码,但不确定我到底做错了什么。

应用

define app
routes
$stateProvider
        .state('table', 
            {
                url: '/table',
                templateUrl: './js/views/tableTmpl.html',
                controller: 'tableCtrl'
            })
            .state('table.test', 
                {
                    url: '/test/:tid',
                    templateUrl: './js/views/tableTmpl.html',
                    controller: 'tableCtrl'
            });

控制器

(function () {
var app = angular.module('inventory_app');

app.controller('tableCtrl', function($scope, tableService, uiGridConstants, $stateParams, $state) {

    /************************************************
    GLOBAL TEAM ID VALUES
    ************************************************/
    $scope.tids = ['AWS', 'RET', 'DO', 'HELLO', 'HG', 'MIM', 'ALL'];
    var globalteamId = 'AWS';

    $scope.tidsIdFunc = function(tidId) {
        globalteamId = tidId;

        $scope.itemClick = function(tid){
          $state.location('table.test', {'ID': tid})
        }; 

        /*Pass in argumnet for the functions below*/
        getCost(globalteamId);
        getAllData(globalteamId);
        pieGraph(globalteamId);
        histoGraph(globalteamId);
        lineGraph(globalteamId);
    };

查看

<div class="dropdown">
      <button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
        TID ID
        <span class="caret"></span>
      </button>
      <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
        <li ng-repeat ="tid in tids">
          <!-- <a ng-click="tidsIdFunc(tid)">{{tid}}</a> -->
          <a ng-click="itemClick(tid)">{{tid}}</a>
        </li>
      </ul>
    </div>
  </div>
</div>

服务 对json进行HTTP调用

1 个答案:

答案 0 :(得分:0)

您需要在项目点击时导航到其他状态,因此最好通过在某个地方使用ui-sref指令来简化

<a ui-sref="table.test({tid: tid})">{{tid}}</a>

真正的问题是你在调用$state API的错误方法来浏览页面。

应该是

$state.go('table.test', {'tid': tid})

而不是

$state.location('table.test', {'ID': tid})