当数组的格式为:
test: { 0: "7.37" 92: "7.67" 95: "8.16" 98: "9.14" city: "北京" }
如果前端页面使用如下格式进行显示就会报错
<p>{{test.0h}}</p>
解决方法:
<p>{{test[0]}}</p>