我最近决定开始尝试使网站符合欧盟Cookie法。我正在使用AngularJS作为前端框架。我一直在看这些jQuery插件:
https://silktide.com/tools/cookie-consent/
http://cookiesdirective.com/
但是,如果可能的话,我宁愿使用 Angular 第一种解决方案。有谁知道任何能够处理此问题的 Angular Directive(指令)?
最佳答案
那样简单。
angular.module('consent', ['ngCookies'])
.directive('consent', function ($cookies) {
return {
scope: {},
template:
'<div style="position: relative; z-index: 1000">' +
'<div style="background: #ccc; position: fixed; bottom: 0; left: 0; right: 0" ng-hide="consent()">' +
' <a href="" ng-click="consent(true)">I\'m cookie consent</a>' +
'</div>' +
'</div>',
controller: function ($scope) {
var _consent = $cookies.get('consent');
$scope.consent = function (consent) {
if (consent === undefined) {
return _consent;
} else if (consent) {
$cookies.put('consent', true);
_consent = true;
}
};
}
};
});
添加样式和动画以品味。