Angular JS - Directive

Edit

3 bindings

2-way binding “=”

function MyDirective() {
var ddo = {
scope: {
myProp: '=attributeName'
}
...
};
return ddo;
}
<!-- index.html -->
<my-directive attribute-name="outerProp">
</my-directive>

<!-- directive.html -->
<p>
{{my-prop}}</p>

所有对attribute-name或者my-prop的改动,两个html里都会做同步修改

1-way binding “<” and “@”

function MyDirective() {
var ddo = {
scope: {
prop: '<',
},
...
};
return ddo;
}

与上面不同,这里只有index.html才能修改prop。

function MyDirective() {
var ddo = {
scope: {
prop: '@',
},
...
};
return ddo;
}

这里prop就只能绑定index.html里的属性变量,如下

<my-directive my-attribute="{{outerProp}}">
</my-directive>

可见my-attribute里面不能有变量(例如controller或者controller的成员)。而且和’<’类似,’@’也是单向的。

%23Angular%20JS%20-%20Directive%0A@%28myblog%29%5Bangular%2Cjavascript%5D%0A%0A%23%23%203%20bindings%0A%23%23%23%202-way%20binding%20%22%3D%22%0A%60%60%60%0Afunction%20MyDirective%28%29%20%7B%0A%20%20var%20ddo%20%3D%20%7B%0A%20%20scope%3A%20%7B%0A%20%20%20%20myProp%3A%20%27%3DattributeName%27%0A%20%20%7D%0A%20%20...%0A%20%20%7D%3B%0A%20%20return%20ddo%3B%0A%7D%0A%60%60%60%0A%60%60%60%0A%3C%21--%20index.html%20--%3E%0A%3Cmy-directive%20attribute-name%3D%22outerProp%22%3E%0A%3C/my-directive%3E%0A%0A%3C%21--%20directive.html%20--%3E%0A%3Cp%3E%7B%7Bmy-prop%7D%7D%3C/p%3E%0A%60%60%60%0A%u6240%u6709%u5BF9attribute-name%u6216%u8005my-prop%u7684%u6539%u52A8%uFF0C%u4E24%u4E2Ahtml%u91CC%u90FD%u4F1A%u505A%u540C%u6B65%u4FEE%u6539%0A%23%23%23%201-way%20binding%20%22%3C%22%20and%20%22@%22%0A%60%60%60%0Afunction%20MyDirective%28%29%20%7B%0A%20%20var%20ddo%20%3D%20%7B%0A%20%20scope%3A%20%7B%0A%20%20%20%20prop%3A%20%27%3C%27%2C%0A%20%20%7D%2C%0A%20%20...%0A%20%20%7D%3B%0A%20%20return%20ddo%3B%0A%7D%0A%60%60%60%0A%u4E0E%u4E0A%u9762%u4E0D%u540C%uFF0C%u8FD9%u91CC%u53EA%u6709index.html%u624D%u80FD%u4FEE%u6539prop%u3002%0A%60%60%60%0Afunction%20MyDirective%28%29%20%7B%0A%20%20var%20ddo%20%3D%20%7B%0A%20%20scope%3A%20%7B%0A%20%20%20%20prop%3A%20%27@%27%2C%0A%20%20%7D%2C%0A%20%20...%0A%20%20%7D%3B%0A%20%20return%20ddo%3B%0A%7D%0A%60%60%60%0A%u8FD9%u91CCprop%u5C31%u53EA%u80FD%u7ED1%u5B9Aindex.html%u91CC%u7684%u5C5E%u6027%u53D8%u91CF%uFF0C%u5982%u4E0B%0A%60%60%60%0A%3Cmy-directive%20my-attribute%3D%22%7B%7BouterProp%7D%7D%22%3E%0A%3C/my-directive%3E%0A%60%60%60%0A%u53EF%u89C1my-attribute%u91CC%u9762%u4E0D%u80FD%u6709%u53D8%u91CF%uFF08%u4F8B%u5982controller%u6216%u8005controller%u7684%u6210%u5458%uFF09%u3002%u800C%u4E14%u548C%27%3C%27%u7C7B%u4F3C%uFF0C%27@%27%u4E5F%u662F%u5355%u5411%u7684%u3002