{{pawnList.length>0 ? pawnList.name : ''}}

报错:Error in render: "TypeError: Cannot read property 'length' of undefined"

 

解决办法:

{{pawnList!== undefined && pawnList!== null && pawnList.length>0 
? pawnList.name 
: ''}}

 

Logo

Vue社区为您提供最前沿的新闻资讯和知识内容

更多推荐