0
我以爲等號表示雙向綁定?正如我在我的指令中引入camelCased屬性的值。在引入數據時指令是什麼意思等號?
這是什麼意思呢?我找了一些更高級的代碼在一本書
.directive('contentHandler', function() {
return {
scope: {
feed: '=contentHandler',
onChange: '&'
},
我看到它在這裏再次:
return {
scope: {
value: '=debug'
},
這是與第一個相關的HTML:
<div content-handler="feed" on-change="onUpdate(element, action)">
等號是否指定哪個特定屬性? –