我正在使用ng2-table: https://github.com/valor-software/ng2-table
我希望能够为某个列添加某些项目的链接。 这是我的代码,谢谢。
res.content.forEach(item => {
contentArray.push({
age: 1,
value: item.value,
link: '<a href="' + 'http://google.com' + '">' + item.stored.substring(0,10) + '...' + '</a>' ,
});
});
this.source.load(transactionContentArray);
这只是将项目放在表格中,如:
<a href="http://google.com">0000000000...</a>