我在我的角度4项目中使用https://github.com/dschnelldavis/angular2-json-schema-form/,该项目引用角度js的http://schemaform.io/。我有一个json方案,它包含几个type =“array”的对象。 lib添加了一个按钮,用于向数组添加更多对象。默认标题为“添加到{对象名称}”。我的问题是如何更改按钮的标题,因为描述应该是德语。非常感谢你。
答案 0 :(得分:0)
按照default Array Widget所述扩展here。
您将需要复制原始模板并将英语按钮描述替换为德语:
<button (click)="removeItem(i)" class="btn btn-default array-remove-button">
<span class="glyphicon glyphicon-minus" aria-hidden="true"></span> ---> Remove <---
</button>
</div>
<button (click)="addItem()" class="btn btn-default array-add-button">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> ---> Add <---
</button>