0
我有[value]="rows[indexString]"
模板中的dataTable。 在組件PrimeNG dataTable不能'重新加載'表
rows: any = {}
newrow: any = {}
...
addNewRow(key: string) {
let rows = {...this.rows}
let newrow = {_key: Math.floor(Math.random() * 10000), title: this.newrow.title}
if (rows[key]) {
rows[key].push(newrow)
} else {
rows[key] = newrow
}
this.rows = rows
}
基本上是跟着從here
只有在表中呈現,在模板{{rows | json}}
第一行教程,一切都在那裏:
{
"210386": [
{
"_key": 9173,
"title": "Row one"
},
{
"_key": 6201,
"title": "Row Two"
}
]
}
需要進行陣列的對象...... – miff
我編輯更精確 –
只是在正確的時間,這項工作完美。我放棄了P-dataTable並啓動了'正常'表格,顯然是過度思考,這是一個很好而簡單的解決方案 – miff