答案 0 :(得分:1)
当您创建Prelection实体并向Event添加关系时,这是JHipster实体子生成器提出的问题:
当您使用Angular显示此关系时,来自'事件'你想用吗? (ID)
只需输入您要用于演示的相关实体的字段名称(默认情况下为" id")。
对于您现有的实体预选,您可以修改.jhipster/Prelection.json
并更改otherEntityField
:
{
"relationshipName": "event",
"otherEntityName": "event",
"relationshipType": "many-to-one",
"relationshipValidateRules": [
"required"
],
"otherEntityField": "name"
},
然后使用yo jhipster:entity Prelection
重新生成您的实体。