var d={ num:that.data.wjxScore, type:type.substring(0,type.length-1),//最后的,去了 content:that.data.text, orderId:that.data.orderId }
时间: 2024-04-01 19:37:27 浏览: 97
这是JavaScript中的一个对象,包含了四个属性,分别是num、type、content和orderId。其中,num属性的值来自于that.data.wjxScore,type属性的值是通过对type字符串进行截取得到的,content属性的值是来自于that.data.text,orderId属性的值是来自于that.data.orderId。该对象可以被用于传递数据或者存储数据。
阅读全文