2017-08-06 18 views

回答

1

reviewCtrl是被稱爲控制器作爲語法controller實例的引用。爲了使用它,你就需要在HTML中使用這個符號:

ng-controller="YourController as reviewCtrl" 

和武官submit功能控制器代替$範圍對象:

.controller('YourController', function() { 
    this.submit = function() { 
    alert("this is alert") 
    } 
}) 
相關問題