1. <script>
    2. $.ajax({
    3. type: 'get',
    4. url: 'http://huruqing.cn:3000/api/film/getList2',
    5. data: {},
    6. dataType: 'json',
    7. success: function(res) {
    8. console.log(res);
    9. },
    10. // 网络问题,地址不对等原因导致前端跟后台都没有建立成功的通信
    11. error: function() {
    12. alert('请求错误');
    13. }
    14. })
    15. </script>