這是後端的Spring Rest控制器,它可以簡單地獲取列表中的所有學生。我已經測試過它並且工作正常。
@RestController
@RequestMapping("a/rest")
public class RestfulController {
@Autowired
private StudentDao studentDao;
@RequestMapping(method = RequestMethod.GET)
public ResponseEntity<List<Student>> index() {
ResponseEntity<List<Student>> studList = new ResponseEntity<List<Student>>(studentDao.getAll(), HttpStatus.OK);
return studList;
}
}
這就是我試圖做我想做的學生該列表中與ID加載功能showData段落定義(ID =「displayData」)
我創建按鈕來顯示( )
那麼我想實現Angularjs的$ HTTP服務連接以這種方式
<body>
<input type="button" value="Get Data" onclick="showData()" />
<p id="displayData" />
</body>
<script type="text/javascript">
function showData() {
$http({
method: 'GET',
url: 'a/rest'
}).then(function (response) {
$('#displayData').html(JSON.stringify(response));
});
}
</script>
背
在這裏,我需要幫助..!問題在於前端。我怎樣才能實現$ http服務工作文件?
您面臨的問題是什麼? – Praveen
@Praveen:我必須在
中顯示該數據,但它不起作用。 –