私は、角度jを使用して別のファイルから詳細を取得するために$ httpに取り組んでいます。
<body>
<h2>AngularJS</h2>
<div ng-app = "" ng-controller = "sController">
<table>
<tr>
<th>Name</th>
<th>Roll No</th>
<th>Percentage</th>
</tr>
<tr ng-repeat = "student in students">
<td>{{ student.Name }}</td>
<td>{{ student.RollNo }}</td>
<td>{{ student.Percentage }}</td>
</tr>
</table>
</div>
<script>
function studentController($scope,$http) {
var url = "C:\\Users\\Test\\Desktop\\data.txt";
$http.get(url).success(function(response) {
alert('success');
$scope.students = response;
}).error(function (response) {
alert("error");
return status;
});
}
</script>
data.txtをファイルには、JSON形式で学生の詳細が含まれています。
[{"Name" : "Smith","RollNo" : 11,"Percentage" : "80%"}]
制御が成功しません。何か不足していますか?また、私は応答の中に何かを取得していません。助けてください。
は、あなたのコントローラーを登録していますか? ( 'angular.module(moduleName).controller ... ' – AranS
角度用のモジュールを作成し、アプリ名を参照するとともに、コントローラにアプリ名を登録する –