-1
我想看到2個contorller由1個控制器調用。 如何讓它打電話? PS。 B在iframe標籤中。 請幫幫我。angularjs-如何調用app.controller中的其他控制器
現在HTML源結構
A.html (A.js)
B.html (B.js) A children tag - iframe
現在JS源(A.js)
var app = angular.module('upload',[nUpload]); //nUpload is other module
app.controller('upload',[$scope,nupload,
function($scope,nupload){ //nupload is service of nUpload module
.... //fileupload
}]); ----- **1contorller**
B.js(JS文件是在其他HTML代碼(iframe))
var app = angular.module('progress',['']);</br>
app.controller('progress',[$scope,,,,] function($scope,,){
... //draw progress }
); ----- **2contorller**
我夢想的來源(A.js)
app.controller('upload',,,,
function(,,,){
B.progress = "10%"
}
非常感謝! @Javierif :) – inyoung
如果函數由A.js(Progress.setProgress) – inyoung
調用,當函數調用A.js(Progress.setProgress)時,是否可以更新或綁定各種B.js?..我還不知道角JS框架.... :(幫我角度!! – inyoung