如何用Angular实现数据请求功能
程序员文章站
2022-04-23 22:43:24
...
这次给大家带来如何用Angular实现数据请求功能,Angular实现数据请求功能的注意事项有哪些,下面就是实战案例,一起来看一下。
使用 Angular 请求数据的时候,需要引入 HttpModule 模块,如果使用的 jsonp 模式的话,则需要另外引入 JsonpModule 模块
import { HttpModule, JsonpModule } from '@angular/http'
然后在当前模块中的 imports 内进行注册
imports: [ HttpModule, JsonpModule ],
注册以后就可以在组件文件当中引入相对应的方法来进行数据请求了
import { Http, Jsonp } from '@angular/http'
然后在当前组件的构造函数当中进行注入以后就可以使用了
constructor(private http: Http, private jsonp: Jsonp) { }
使用如下,一个简单的 get 请求
// 进行注入,拿到相对应的方法 constructor(private http: Http, private jsonp: Jsonp) { } public list: any = [] // 请求数据 getData() { let url = 'http://www.phonegap100.com/appapi.php?a=getPortalList&catid=20&page=1' let _this = this this.http.get(url).subscribe((data) => { _this.list = JSON.parse(data['_body'])['result'] console.log(_this.list) }) }
前台进行渲染即可
<button (click)="getData()">get 请求数据</button> <ul> <li *ngFor="let item of list"> {{item.title}} </li> </ul>
JSONP 请求数据
注意区分与 get 请求的区别,使用如下
// 请求数据 jsonpData() { let url = 'http://www.phonegap100.com/appapi.php?a=getPortalList&catid=20&page=1&callback=JSONP_CALLBACK' let _this = this this.jsonp.get(url).subscribe((data) => { _this.list = data['_body']['result'] console.log(_this.list) }) }
// 渲染 <button (click)="jsonpData()">jsonp 请求数据</button> <ul> <li *ngFor="let item of list"> {{item.title}} </li> </ul>
不同点
请求的 url 参数结尾必须要添加指定的回调函数名称 &callback=JSONP_CALLBACK
请求的方式变为 this.jsonp.get(url)
请求后得到的数据格式不统一,需要自行进行调整
POST 请求
与 GET 的请求方式有些许不同,首先需要引入请求头 { Headers }
import { Http, Jsonp, Headers } from '@angular/http'
然后来对请求头进行定义,需要先实例化 Headers
private headers = new Headers({'Content-Type': 'application/json'})
最后在提交数据的时候带上 Headers 即可
postData() { let url = 'http://localhost:8080/login' let data = { "username": "zhangsan", "password": "123" } this.http.post( url, data, {headers: this.headers} ).subscribe((data) => { console.log(data) }) }
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
以上就是如何用Angular实现数据请求功能的详细内容,更多请关注其它相关文章!
上一篇: PHP的执行周期详解
下一篇: Linux远程桌面实现步骤
推荐阅读
-
jQuery实现分页功能(含ajax请求、后台数据、附完整demo)
-
在 Angular-cli 中使用 simple-mock 实现前端开发 API Mock 接口数据模拟功能的方法
-
Angular 数据请求的实现方法
-
Angular中使用axios实现get请求数据
-
极客时间——数据结构与算法(36):AC自动机:如何用多模式串匹配实现敏感词过滤功能?
-
jQuery实现分页功能(含ajax请求、后台数据、附完整demo)
-
在 Angular-cli 中使用 simple-mock 实现前端开发 API Mock 接口数据模拟功能的方法
-
如何用Angular实现数据请求功能
-
如何用Angular实现数据请求功能
-
微信小程序ajax实现请求服务器数据及模版遍历数据功能示例