我在Typescript / Angular中下载了一个管理仪表板示例。它使用.component,.routing,.module文件以非常模块化的方式构建。
现在我需要导入cookie模块。我习惯于通过从我读过的内容中将它们注入到Component构造函数中来导入模块,但是Angular文档说我需要使用
angular.module('app', ['ngCookies']);
导入它的指令。
所以我尝试了但它给了我一个错误(找不到' angular')。我认为问题可能在于它对javascript的意义。
任何人都可以帮助我使用打字稿中导入cookie的最小例子吗?
答案 0 :(得分:1)
这些评论让我走上正轨。 如果有人为此而苦苦挣扎,
使用
first: 0
containsNumbersGreaterThan10000: 9989999
has10000: true
Stream time: 57
first: 0
containsNumbersGreaterThan10000: 9989999
has10000: true
Loop time: 38
然后在Component
中import { CookieService } from 'ng2-cookies';
现在它适用于构造函数注入