在这部分代码中,我想显示对象的值。
./manage.py shell_plus --print-sql
在邮递员中请求正常工作。在日志中显示值,但首先将出错,然后使用值进行日志。与 <div class="container">
<h3>Finance</h3>
<p>{{currentFinance.finance_id}}</p>
<p>{{currentFinance.name}}</p>
<p>{{currentFinance.description}}</p>
</div>
....
methods: {
getFinance(id) {
FinanceService.getFinanceByTrip(somevalue, id)
.then(response => {
this.currentFinance = response.data;
console.log('check data: ',this.currentFinance);
})
.catch(e => {
console.log(e);
});
}
},
created() {
this.getFinance(this.$route.params.parentId);
}
连接时出错。有什么事吗(“ currentFinance”字段的名称正确)