测试角度输入视图显示,以任何方式快速交换输入数据吗?

问题描述 投票:0回答:1

如何创建模拟数据以插入并测试显示?每次,我们要查看HTML渲染时,都必须从字面上复制数据并将其粘贴到Typescript文件中。是否有任何工具集可以执行此操作?

当前正在测试以HTML格式显示的@Inputs>

在研究以下选项时,

export class CustomerView implements OnInit {

  @Input() customer: Customer;
    this.customer.name = "Joe";
    this.customer.address = "123 Maple STreet";
    this.customer.city = "Atlanta";
    this.customer.state = "GA";
    this.customer.zip= "30314";
    this.customer.phone = "555-444-77777";

HTML

    <div class = "row">
        <div> {{customer.name}} </div>
        <div> {{customer.address}} </div>
        <div> {{customer.city}} </div>
        <div> {{customer.state}} </div>
        <div> {{customer.zip}} </div>
        <div> {{customer.phone}} </div>
    </div>

Display example plcture

如何创建模拟数据以插入并测试显示?每次,我们要查看HTML渲染时,都必须从字面上复制数据并将其粘贴到Typescript文件中。有任何工具集可以执行此操作吗? ...

javascript node.js angular typescript angular7
1个回答
0
投票

您可以使用JSON占位符的API来获取一些数据。

URL :: https://jsonplaceholder.typicode.com

© www.soinside.com 2019 - 2024. All rights reserved.