我需要根据选定的行渲染一个新表。 http://l-lin.github.io/angular-datatables/#/rowSelect
我需要传递整个对象而不是
ng-model="selected[' + full.id + ']"
仅以
格式打印{id:boolean}
比如说:full
是User object-> user.id, user.name, user.email
。我想将isSelected: boolean
作为附加属性注入到用户对象中。因此,当isSelected
为真时,我可以轻松地从用户对象构造一个新表。
我如何实现这一目标?