在Laravel中,我尝试将MySQL中的数据作为JSON传递给AngularJS。虽然我在那方面很成功,但我很困惑如何利用AngularJS中的值。有帮助吗?
检查输出数据(隐藏每个值)
控制器
public async Task<IEnumerable<double[]>> GetHistory(string id, Size size)
AngularJS
DateTime.Ticks
显示
public function index(){
return Response::json(Company::all());
}
答案 0 :(得分:0)
希望我能自己解决这个问题。有3个步骤。
$http.get('localhost:8000/json')
之前
在$http.get('/json')
将JSON设置为变量
在this.companies = response.data;
之前
在$scope.data = response.data;
NG-重复
在<div ng-repeat="company in CompanyCtrl.companies">
之前
在<div ng-repeat="company in data">