如何在 hyperledger composer 中编辑 Yeoman 创建的文本?

How to edit the text created by Yeoman in hyperledger composer?

asset Vehicle identified by vin{
o String vin
o String vehicleMake
}

在上面的示例中,yo hyperledger-composer 生成 Angular 框架,它使用资产变量作为 table 标题和表单标签,即 'vin' 和 'vehicleMake' 在 angular 网络应用程序中。如何在 angular 网络应用程序中将其更改为 'Vehicle Number' 和 'Vehicle Make'?

我尝试直接在 Vehicle.component.html 中进行更改,但它成功了。但是当命令再次为 运行 时,所有直接完成的更改都将被覆盖。 Space 不能在代码本身中添加,因为它会产生语法问题。

Angular 生成器不支持任何往返代码生成(保留用户编辑),因此您要么需要稳定模型,然后 运行 生成器一次(手动生成任何此后更改)或区分生成器的输出并手动将更改应用到修改后的代码库。