HTML
Parent Scope
// Update to see how parent scope interacts with component scope
Attribute
get: {{isolatedAttributeFoo}}set: // This does not update the parent scope.
set: // This does not update the parent scope.Binding
get: {{isolatedBindingFoo}}set: // This does update the parent scope.Expression
// And this calls a function on the parent scope.
JS
var myModule = angular.module("myModule", []) .directive("myComponent", function () { return { restrict:"E", scope:{ /* NOTE: Normally I would set my attributes and bindings to be the same name but I wanted to delineate between parent and isolated scope. */ isolatedBindingString:"@attributeString", isolatedAttributeFoo:"@attributeFoo", isolatedBindingFoo:"=bindingFoo", isolatedExpressionFoo:"&" } }; }) .controller("MyCtrl", ["$scope", function ($scope) { $scope.foo = "Hello!"; $scope.updateFoo = function (newFoo) { $scope.foo = newFoo; } }]);
代碼和效果地址
文章版權歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/50694.html
HTML Parent Scope // Update to see how parent scope interacts with component scope Attribute get: {{isolatedAttributeFoo}} ...
摘要:這使得許多人并未真正了解的模板,而認為只是提供了一堆內(nèi)置指令并可用于文件。是個對于模板很重要的指令,它是基本的條件表達,滿足條件時則存在,不滿足則不存在。則是另一重要指令,能循環(huán)創(chuàng)建。 showImg(http://segmentfault.com/img/bVcJtv); 作為最流行的MVVM(Model-View-View-Model)框架之一,相信大部分前端對AngularJS...
摘要:可選參數(shù),布爾值或者對象默認值為,可能取值默認值。布爾值或者字符,默認值為這個配置選項可以讓我們提取包含在指令那個元素里面的內(nèi)容,再將它放置在指令模板的特定位置。 前言 最近學習了下angularjs指令的相關知識,也參考了前人的一些文章,在此總結下。 歡迎批評指出錯誤的地方。 Angularjs指令定義的API showImg(https://segmentfault.com/img...
摘要:我們通常通過其區(qū)分大小寫的規(guī)范化名稱例如,來定義指令。在其目前的實現(xiàn)上,我們應該需要去創(chuàng)建一些不同點控制器用來重用這個指令。如此,綁定是理想的將回調(diào)函數(shù)綁定到指令行為。這被指令調(diào)用指明。前綴表示該指令在其父元素上搜索控制 文檔翻譯至angularjs.org. 文檔解釋了您何時想在AngularJS應用程序中創(chuàng)建自己的指令,以及如何實現(xiàn)它們。 | 建議搭配原文食用 | 什么是指令? 在...
摘要:引言指令可以說是的核心,而其開發(fā)也是比較困難的,本文主要介紹指令的一些參數(shù)和的綁定策略。指令執(zhí)行的優(yōu)先級,用于多個指令同時作用于同一個元素時。改變父會影響指令,而改變指令不會影響父。在父和指令之間建立雙向綁定。 引言 指令(Directive)可以說是 AngularJS 的核心,而其開發(fā)也是比較困難的,本文主要介紹指令的一些參數(shù)和scope的綁定策略。 參數(shù) 從 AngularJS ...
閱讀 3127·2023-04-25 15:02
閱讀 2835·2021-11-23 09:51
閱讀 2045·2021-09-27 13:47
閱讀 2003·2021-09-13 10:33
閱讀 986·2019-08-30 15:54
閱讀 2651·2019-08-30 15:53
閱讀 2868·2019-08-29 13:58
閱讀 901·2019-08-29 13:54