-3
我試圖從json文件中提取數據並顯示它,但是我無法繼續使用該程序,因爲我缺少編碼Angular的經驗。從json文件中提取數據並用按鈕顯示
當前使用的是使用HttpClientModule的Angular 4.3。
app.component.ts
import { Component, OnInit } from '@angular/core';
import { HttpClient } from '@angular/common/http';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
title = '?';
data;
constructor(private http: HttpClient) {
}
ngOnInit(): void {
this.http.get('/src/app/students.json')
}
chgTab1() {
this.title = "Changed Title";
}
chgTab2() {
//Want to display the items from json file
}
}
students.json
[
{"id": "3", "mame": "Dama"},
{"id": "1", "mame": "ASD"},
{"id": "2", "mame": "Chris"},
{"id": "4", "mame": "Sass"},
]
4.0之前的版本是否是角?由於某些原因,我無法從@ angular/common/http獲取導入標題。 –
我的不好。我已更新進口。您可以刪除公共部分。還要導入rxjs –
還要確保在app.module.ts中導入HttpModule。 –