2014-11-08 163 views
0

我正在調用API並使用flow.js將映像發佈到服務器。 我從AngularJS控制器進行此調用:如何從AngularJS控制器獲取服務器響應 - flow.js

<div flow-init flow-file-added="!!{png:1,gif:1,jpg:1,jpeg:1}[$file.getExtension()]"> 
     <button ng-click="sender($flow)">send Image</button> 
    </div> 


    $scope.sendImage=function(flow) 
    { 
     flow.upload(); 

    } 

的圖像被成功地由服務器接收,但是我有搜索如何獲得sendImage功能 內的服務器響應的互聯網上,但我做不到找到它的任何事情。

回答

2

可能爲時已晚,但是這是我會做...

<div flow-init 
    flow-file-added="!!{png:1,gif:1,jpg:1,jpeg:1}[$file.getExtension()]" 
    flow-file-success="success($file, $message)"> 
    <button ng-click="sender($flow)">send Image</button> 
</div> 


$scope.success = function($file, $message) { 
    $file.msg = $message; 
    console.log('resp', $message); 
} 
+1

謝謝,我解決我的問題。 – 2017-04-24 14:56:23