For developer:Do not set same key "[object Object]" in wx:key

wx:for="{{orders}}"
wx:key="*this" ==> "index"
num="{{item.num}}"
price="{{item.price}}"
title="{{item.title}}"
 
问题解决。
*this 以前我们学习c的时候,还有java的时候,知道这个是指表对象本身。
 
key应该只要一个值index就可以。
道法自然
原文地址:https://www.cnblogs.com/jiduoduo/p/14771900.html