我想通过填充 javascript 数组变量中的值来创建一个表。我像这样在我的变量中创建并输入了值
var result=[];
//some loop. Just demonstrating that there are multiple values of id and text
result.push(
{
"id":obj["id"],
"text":obj["text"],
}
);
我想为html中结果变量的每个id和文本创建一个新行
<table>
<tr><td>id</td><td>text</td></tr>
<table>
使用 angular.js 的方法是什么。