我已经注入了cookie,我正在保存像这样的cookie中的值,
$cookies.name = "Alfred";
console.log("cookie " +$cookies.name);
并在HTML中显示
{{name}}
cookie被保存并显示在控制台中,但在HTML中却没有显示出来。我也检查了Chrome浏览器,cookie保存在localhost ..
答案 0 :(得分:1)
你需要有一个范围变量才能显示它
$cookies.name = "Alfred";
$scope.cookiname = $cookies.name ;
在HTML中
<div>Name: {{cookiname}}</div>
以下是working App