如何使用angular js从数据库中获取数据(Codeigniter) 当我尝试调用功能控制器时,它显示500错误。
答案 0 :(得分:0)
500错误表示由于模型中发生某些数据库错误或在Codeigniter中控制器中发生了某些语法错误,导致控制器中发生错误,请检查服务器端代码。
语法是
$http({method: 'GET', url:
base_url+'Controllername/functionname/'+parameter})
.then(function(response) {
//alert(response.data);
//console.log(response.data);
});