我正在使用ngx-cookieconsent,并且它可以按预期工作,但initialize $回调函数除外。
this.initializeSubscription = this.cookieConsentService.initialize$.subscribe(
(event: NgcInitializeEvent) => {
console.log('cookie config ',this.cookieConsentService.getConfig());
});
尽管显示了cookie同意弹出窗口,但似乎从未调用initialize。没有错误,但是在打印其他日志时日志永远不会打印到控制台。
这是我的配置(尽管我认为它不相关)
const cookieConfig:NgcCookieConsentConfig = {
enabled: true,
cookie: {
domain: environment.domain
},
"palette": {
"popup": {
"background": "#237afc"
},
"button": {
"background": "#fff",
"text": "#237afc"
}
},
theme: 'block',
type: 'info'
};
我在这里想念什么?