我正在创建一个在表格中显示数据的网页。单击按钮后,表中的数据应更改。 (来自不同URL的数据应填充到表中。
我可以成功填充并显示默认数据。我在调用新的URL数据的地方使用了onclick功能,但是它不起作用
//Storing results in empData
app=angular.module('app',[]);
app.controller('MyCtrl',function($scope,$http){
$http.get("url")
.success(function(response){
$scope.empData=response;
})
.error(function(){
});
});
//this function is called on clicking the button to update the data.
function myFunction()
{
app=angular.module('app',[]);
app.controller('MyCtrll',function($scope,$http){
$http.get("newurl")
.success(function(response){
$scope.empData=response;
$scope.reverse=true;
})
.error(function(){
});
});
请为我提供单击按钮时更改empData值的解决方案