我有一个饼干

$cookieStore.put('lastpage', $scope.page);


我想获取Cookie“ lastpage”的值,并以html显示

<div>Last page is 'value'</div>

最佳答案

尝试这个..

  $scope.cookie = $cookieStore.get('lastpage');

<body>
    <form id="form1" runat="server">
    <div ng-controller="x">
        Cookie Value: {{cookie}}
    </div>
    </form>
</body>


编辑由于不推荐使用Angular 1.4'$ cookieStore',因此如果使用该版本(或更高版本),则应为:

  $scope.cookie = $cookies.get('lastpage');


请参见the docs中的弃用警告

10-08 00:01