使用loopback我需要从模型实例中获取modelName。任何想法?
var myAccount = new app.models.Account({name: 'ACME'});
var modelName = myAccount.modelName;`
//should get 'Account'
答案 0 :(得分:4)
正确答案为myAccount.constructor.definition.name
,因此在您的情况下.logo {
height: 100px;
display: -webkit-flex;
display: flex;
-webkit-align-self: center;
align-self: center;
width: 200px;
background: red;
}
.logo img {
width: auto;
height: auto;
margin: auto;
max-width: 100%;
}
答案 1 :(得分:2)
我设法通过使用(这是模型)来检索模型名称:
this.definition.name;