搜尋

首頁  >  問答  >  主體

angular.js - angularjs與後端交互

用angular做前端頁面,與後端是怎麼進行互動的(後端採用的是flask框架)?比如說前端要用什麼方式傳輸資料到後端,後端怎麼拿取資料傳送給前端?

为情所困为情所困2745 天前609

全部回覆(2)我來回復

  • phpcn_u1582

    phpcn_u15822017-05-15 17:02:15

    json格式$http服務啊

    回覆
    0
  • 巴扎黑

    巴扎黑2017-05-15 17:02:15

    一般是注入$http service,透過get/post和後台互動

    module.controller("YourCtrl", [$scope, $http,
        function(scope, http) {
        // your controller code here:
        }])

    回覆
    0
  • 取消回覆