如何以角度4打印角度对象
Posted
技术标签:
【中文标题】如何以角度4打印角度对象【英文标题】:How to print angular object in angular 4 【发布时间】:2018-06-09 19:55:29 【问题描述】:如何打印 json 值,我很像 angular,请有人帮帮我。
test.html
projects
<li *ngFor="let obj of projects">obj | json </li>
services.ts
getProjects(): Promise<Addtimesheet[]>
return this.http.get("http://192.168.1.90/EMS/api/TimeSheetAPI/getProjects")
.toPromise()
.then(this.extractData)
.catch(this.handleError);
private extractData(res: Response)
let body = res.json();
console.log("Sdfsdfsdfsd sss");
console.log(body);
return body;
private handleError(error: any): Promise<any>
console.error('An error occurred', error);
return Promise.reject(error.message || error);
component.ts
import Component, OnInit from '@angular/core';
import Addtimesheet from './addtimesheet';
import TimesheetService from './timesheet.service';
import Projects from './projects';
@Component(
selector: 'app-timesheet',
templateUrl: './timesheet.component.html',
styleUrls: ['./timesheet.component.css'],
providers: [TimesheetService]
)
export class TimesheetComponent implements OnInit
timesheet = ;
today: any;
private projects: Projects[] = [];
private errorMessage: any = '';
constructor(private timesheetService: TimesheetService)
ngOnInit()
this.timesheetService.getProjects()
.then(projects => this.projects = projects)
console.log(this.timesheetService.getProjects());
json 值
[
"AESEMS",
"ChainDrive",
"CICAND",
"CICAPI",
"CICios",
"CICWeb",
"KC_APPTV",
"KCMagento",
"RDLSWeb",
"Riddles",
"TB",
"TBAND",
"TBiOS",
"TestProject"
]
我试过了,错误错误:找不到“对象”类型的不同支持对象“[对象对象]”。 NgFor 只支持绑定到 Arrays 等 Iterables。
显示某种错误。
【问题讨论】:
请显示整个component.ts文件。 @szmitas 更新了component.ts 可能后端意外没有发送promise:在你的服务中,extractData
方法,Array.isArray(body)
说什么?另外,也许你的客户在惹你。您在服务中使用 HttpClient 还是 Http?如果是 HttpClient,它应该已经为您提供 JSON(尽管在您的代码中看起来不像)。
你确定你的服务返回一个数组吗?
对我来说真的听起来你没有得到一个数组。请检查开发工具中的响应选项卡并将其复制粘贴到您的问题:)
【参考方案1】:
要打印 JSON:
<pre>
<code>
obj | json
</code>
</pre>
或者打印到控制台:
console.log(JSON.stringify(obj));
【讨论】:
显示同样的错误。错误错误:找不到类型为“对象”的不同支持对象“[对象对象]”。 NgFor 只支持绑定到 Arrays 等 Iterables。 看起来不像 JSON obj...你能输出到控制台看看它是什么类型的对象吗? 此值 [“AESEMS”、“ChainDrive”、“CICAND”、“CICAPI”、“CICiOS”、“CICWeb”、“KC_APPTV”、“KCMagento”、“RDLSWeb”、“谜语” , "TB", "TBAND", "TBiOS", "TestProject"]【参考方案2】:考虑
projects = [ "AESEMS", "ChainDrive", "CICAND", "CICAPI", "CICiOS", "CICWeb", "KC_APPTV", "KCMagento", "RDLSWeb", "Riddles", "TB", "TBAND", "TBiOS", "TestProject" ]
按原样输出 JSON 数组
[ projects ]
一个接一个地输出值
<ul>
<li *ngFor="let project of projects">
project
</li>
</ul>
希望对你有帮助。
【讨论】:
以上是关于如何以角度4打印角度对象的主要内容,如果未能解决你的问题,请参考以下文章