的index.htmlAngularJS控制器究竟是什麼意思?
<body ng-controller="StoreController as s">
<h1 ng-click="s.changeValFunc()">{{s.carname}}</h1>
<h2>{{s.carname}}</h2>
</body>
app.js
var app = angular.module('store', []);
app.controller('StoreController', function() {
this.carname = "Volvo";
this.changeValFunc = function(){
this.carname="BMW";
}
});
點擊h1標籤的變化{{carname}}兩個H1和H2寶馬。是不是「this」是指被點擊的當前元素。我很困惑如何在視圖間共享控制器屬性。
的可能的複製[如何進行 「this」 關鍵字的工作?](http://stackoverflow.com/questions/3127429/how-does-the-this-keyword-work) –