无法加载资源angular2-cookie

时间:2016-10-17 01:00:48

标签: angular angular2-cookie

我正在尝试使用visual studio在angular-2的快速启动中添加'angular2-cookie'。

关注https://www.npmjs.com/package/angular2-cookie

到目前为止,我做了以下更改。

localhost

应用程序构建正常但最终无法加载资源:服务器响应状态为404(未找到)

错误:(SystemJS)XHR错误(404 Not Found)loading http:// localhost:56249 / angular2-cookie / services / cookies.service(...)

我错过了什么?

完整代码

system.config:

db

app.component.ts

npm install angular2-cookie --save

System.config
  map: 
   // other libraries
    'angular2-cookie': 'npm:angular2-cookie'

  packages:'angular2-cookie': {
  main: './core.js',
  defaultExtension: 'js'
  }

  app.component.ts

    import { CookieService } from 'angular2-cookie/services/cookies.service';

    providers: [CookieService]

   constructor(private _cookieService: CookieService) {
    _cookieService.put("test.com", "testCookie");
    console.log(_cookieService.get('test.com'));

1 个答案:

答案 0 :(得分:0)

今天相同的代码。似乎重建,删除浏览器缓存帮助。