美文网首页学习angularangular2
Angular2项目日常开发中所遇问题及解决方案记录(一)

Angular2项目日常开发中所遇问题及解决方案记录(一)

作者: 易sense | 来源:发表于2016-09-27 11:30 被阅读14581次

最近在把一个angularjs1.4版本的项目使用angular2框架进行升级,因此也把个人每天开发中遇到的问题及解放方案记录下来,不定时更新~

1、Webstorm can't find '@angular/core';

解决方案:

In webstorm : 
File->settings->Languages & Frameworks -> TypeScript ->enable typescript compiler & Use tsconfig.json

2、/localhost:3000/node_modules/rxjs.js 报错 404

Change your rxjs entry in package to this:

'rxjs': {
main: '/bundles/Rx.umd.js',
defaultExtension: 'js'
}    

3、of.js和from.js、fromPromise.js 找不到 报错404

仔细查看之后发现:rxjs-5.0.0-beta.11与rxjs-5.0.0-beta.2下面的observable包里的目录结构不一致。

4、在Component中注入管道(pipe)时报错:can't find pipe~


在stackoverflow中查到解决方案:
http://stackoverflow.com/questions/39539085/angular-2-0-release-pipes-and-directives-are-not-properties-of-component-anymo

5、*ngFor指令不支持键值对结构?

解决方案:http://stackoverflow.com/questions/37046138/how-to-use-ngfor-with-object

6、No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.

解决方案: add <basehref='/'>

7、Error: Uncaught (in promise): Error: Cannot match any routes: ''"

解决方案:

8、Can't bind to 'ngModel' since it isn't a known property of 'input'?

解决方案:In order to be able to use two-way data binding for form inputs you need to import theFormsModulepackage in your Angular module. For more info see the Angular 2 official tutorial here and the official documentation for forms

9、http post请求 response里面找不到headers?

解决方案:可以把map方法去了试试。


ng2项目进行中,一步步的趟过去~

相关文章

网友评论

  • a1314xu:你好,请问下楼主,以前angular1.4项目下用的angular插件怎么能在新项目中使用的
    空巷_08b6:第8个问题是在逗我么
    易sense:@a1314xu angularjs的UI组件还没有更新到angular2上来。在github上面搜angular2-bootstrap,里面有些angular2的插件,自定义的插件还是重新用angular2的语法写吧。
  • 该用户昵称包含敏感词已被屏蔽:楼主测过ng2在火狐中的情况吗?
    易sense:@144d1c057261 最新版的也没问题,刚刚有试过。 :smile:
    该用户昵称包含敏感词已被屏蔽:我的最新版本的火狐 routerLink 失效 无法点击
    易sense:@144d1c057261 本机上firefox版本48.0.2。暂时没发现什么兼容性问题。 :smile:

本文标题:Angular2项目日常开发中所遇问题及解决方案记录(一)

本文链接:https://www.haomeiwen.com/subject/empcyttx.html