我正在开发angular-fullstack生成器。我得到的数据是响应get请求,它是整数值的形式
(1,2,5,6
134,645
236,567
415,234等)
我希望在我的前端以html表的形式显示这些值,其中包含两列,如下所示
col1 col2
1 2
5 6
134 245 and so on
下面是我的html div,我想显示它
<div id="tabdata" >
</div>
我的角度控制器代码为http get
$scope.getdata =function(){
$http.get("/getdata" ).success(function(response){
$scope.output=response;
})
应根据来自回复的内容调整表格。 在此先感谢您的回复。