博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Angular2项目开发中所遇问题及解决方案记录(一)
阅读量:6688 次
发布时间:2019-06-25

本文共 1183 字,大约阅读时间需要 3 分钟。

Angular2项目开发中所遇问题及解决方案记录

最近在把一个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中查到解决方案:

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

解决方案:

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项目进行中,一步步的趟过去~

转载地址:http://quuoo.baihongyu.com/

你可能感兴趣的文章
NSHipster: NSRegularExpression 中文版
查看>>
Android 开发中不得不知道的 Tips 集合 (持续更新 ing)
查看>>
报警系统QuickAlarm之报警规则的设定与加载
查看>>
【CLI】使用 Curl 下载文件实时进度条显示
查看>>
Android 滤镜效果和颜色通道过滤
查看>>
Ruby开发者已可通过Fog管理Microsoft Azure服务
查看>>
Chrome和HTTPS:安全Web的征途
查看>>
软件专家的对话模式(第一部分)
查看>>
脚本填报表的条件查询
查看>>
从一个开发的角度看负载均衡和LVS
查看>>
Spring Boot(12)——使用MongoDB
查看>>
c++基础(上) 听课流水账
查看>>
Observable
查看>>
k8s使用deployment升级
查看>>
ionic3项目实战教程 - 第10讲 ionic3分类菜单设计(类似外卖)
查看>>
深度解析 | K8S API Server之入门须知
查看>>
LeanEngine 中使用 WebSocket
查看>>
浅入分析和Linux内核相关的文件夹/proc和/sys .
查看>>
Java 二分查找
查看>>
刚刚,阿里开源了一项重磅炸弹,终结程序员“中年危机”!
查看>>