请帮我新的角度js我现在执行插入操作试图检索数据,我只是搞砸了。没有任何错误,但我的表在浏览器中是空白的。 控制台中也没有错误。 现在需要更改或更新的内容是什么? 我分享了我的代码,请看看并帮助我。
var myapp = angular.module('myApp', []);
(function(app)
{
myapp.controller("ViewController", ['$scope','$http', function($scope, $http )
{
$scope.results = [];
$http({
method: 'GET',
url:'http://localhost/ngci/user/view'
}).then(function (data, status)
{
$scope.results = data;
});
}]);
})(myapp);
public function view()
{
$data['x'] = $this->user_model->viewusers();
$this->load->view('view_data',$data);
}
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="<?php echo base_url(); ?>angular/app.js"></script>
</head>
<body>
<div id="container" ng-app="myApp" ng-controller="ViewController">
<table class="table table-bordered">
<thead>
<th>name </th>
<th>city</th>
</thead>
<tbody>
<tr ng-repeat="x in results">
<td>{{ x.name }}</td>
<td>{{ x.city }}</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
答案 0 :(得分:0)
不是角度专家,但尝试以JSON格式发送数据。这是控制器代码:
public function view() {
$data = $this->user_model->viewusers();
$this->output->set_content_type('application/json')->set_output(json_encode($data));
}
请参阅此Example Link