保存$ location参数状态AngularJS

时间:2013-07-19 15:05:08

标签: javascript angularjs

如何使用pushState

在应用程序的整个生命周期中保存URL参数状态
  1. 页面加载。
  2. 通过"/search"
  3. 转到href
  4. submitSearch()通过过滤字段$location.search(fields)
  5. 通过"/anotherPage"
  6. 转到href
  7. 通过"/search"
  8. 返回href
  9. 搜索参数将重新设置为他们的上一次。
  10. 这是某个内置功能吗?

    如果不是最好的方法是什么?

3 个答案:

答案 0 :(得分:4)

如果您通过pushState计划大多数单页网站,您可能希望深入了解$ routeProvider(http://docs.angularjs.org/api/ngRoute.%24routeProvider)。

为了进一步深入兔子洞,我建议您查看ui-router模块:(https://github.com/angular-ui/ui-router)。 $ stateProvider(来自ui-router)和$ routeProvider的工作非常相似,所以有时ui-router文档可以提供你在$ routeProvider的糟糕文档中找不到的见解。

我建议逐页浏览五页ui-router文档(https://github.com/angular-ui/ui-router/wiki)。

在所有前言之后,这是实用的:您将建立一个保存历史数据的工厂,并使用$ routeProvider / $ stateProvider中定义的控制器来访问和操作该数据。

注意:工厂是一项服务。服务并不总是工厂。命名空间:

angular.module.<servicetype[factory|provider|service]>. 

这篇文章解释了服务类型:https://stackoverflow.com/a/15666049/2297328。重要的是要记住他们都是单身人士。

例如:

var myApp = angular.module("myApp",[]);
myApp.factory("Name", function(){
  return factoryObject
});

代码看起来像:

// Warning: pseudo-code
// Defining states
$stateProvider
  .state("root", {
    url: "/",
    // Any service can be injected into this controller.
    // You can also define the controller separately and use
    // "controller: "<NameOfController>" to reference it.
    controller: function(History){
      // History.header factory
      History.pages.push(History.currentPage);
      History.currentPage = "/";
    }
  })
  .state("search", {
    url: "/search",
    controller: function(History, $routeParams) {
      History.lastSearch = $routeParams
    }
  });

app.factory('<FactoryName>',function(){
  var serviceObjectSingleton = {
    pages: []
    currentPage: ""
    lastSearch: {}
  }
  return serviceObjectSingleton
})

如果你想知道$ routeProvider和$ stateProvider之间有什么区别,那就是$ stateProvider有更多功能,主要是嵌套状态和视图......我想。

答案 1 :(得分:2)

最简单的方法是使用cookie,angularjs为此提供包装服务。 只需当你去“/ search”时用“$ cookieStore.put()”保存当前的URL参数,一旦你回来,你就可以得到你所需要的“$ cookieStore.get()”。

请参阅angularjs cookie store

上的文档

答案 2 :(得分:1)

我提供了locationState服务,您只需为其提供要保留的值,并将其存储在网址中。因此,您可以在应用中的所有路线中存储所需的所有州。

像这样使用:

angular.module('yourapp')
.controller('YourCtrl', function ($scope, locationState) {
  var size = locationState.get('size');
  ;
  // ... init your scope here
  if (size) {
      $scope.size = size;
  }
  // ...and watch for changes
  $scope.$watch('size', locationState.setter('size'));
}

以下是代码:

// Store state in the url search string, JSON encoded per var
// This usurps the search string so don't use it for anything else
// Simple get()/set() semantics
// Also provides a setter that you can feed to $watch
angular.module('yourapp')
.service('locationState', function ($location, $rootScope) {
    var searchVars = $location.search()
    , state = {}
    , key
    , value
    , dateVal
    ;

    // Parse search string
    for (var k in searchVars) {
        key = decodeURIComponent(k);
        try {
            value = JSON.parse(decodeURIComponent(searchVars[k]));
        } catch (e) {
            // ignore this key+value
            continue;
        }
        // If it smells like a date, parse it
        if (/[0-9T:.-]{23}Z/.test(value)) {
            dateVal = new Date(value);
            // Annoying way to test for valid date
            if (!isNaN(dateVal.getTime())) {
                value = dateVal;
            }
        }
        state[key] = value;
    }

    $rootScope.$on('$routeChangeSuccess', function() {
        $location.search(searchVars);
    });

    this.get = function (key) {
        return state[key];
    };
    this.set = function (key, value) {
        state[key] = value;
        searchVars[encodeURIComponent(key)] = JSON.stringify(value);
        // TODO verify that all the URI encoding etc works. Is there a mock $location?
        $location.search(searchVars);
    };
    this.setter = function (key) {
        var _this = this;
        return function (value) {
            _this.set(key, value);
        };
    };
});