angular HttpClient 配置
生活随笔
收集整理的這篇文章主要介紹了
angular HttpClient 配置
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
angular的資料很少,并且坑很多,報錯也不是很好解決,研究這個花了好幾天時間。
首先,先查看自己的anuglar版本是不是4.3.0以上,HttpClient是anuglar4.3中新加入的特性,在package.json中查看
"@angular/animations": "^4.3.0","@angular/common": "^4.3.0","@angular/compiler": "^4.3.0","@angular/core": "^4.3.0","@angular/forms": "^4.3.0","@angular/http": "^4.3.0","@angular/platform-browser": "^4.3.0","@angular/platform-browser-dynamic": "^4.3.0","@angular/router": "^4.3.0",?
1.在app.module.ts中導入
import { HttpClientModule } from '@angular/common/http';并在imports加入:
imports: [ HttpClientModule ]?
2.成員模塊中加入 import { HttpClientModule } from '@angular/common/http'; constructor( private myhttp: HttpClient ) { }?
就完了基本的配置。轉載于:https://www.cnblogs.com/cxd1008/p/7685789.html
總結
以上是生活随笔為你收集整理的angular HttpClient 配置的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 给sublime设置格式化代码的快捷键
- 下一篇: 决策树的理解