Angular JS中自定義標簽 屬性綁定的解釋

来源:http://www.cnblogs.com/grkin/archive/2016/03/25/5318273.html
-Advertisement-
Play Games

看到自定義標簽的文檔時,文檔作者解釋的能力實在太弱,也可能是本人太笨,一下繞不過來。 看了一個stackoverflow答案,才算明白,在此貼出翻譯,以供大家參考。 1: app.directive('mytag',function() { 2: return { 3: restrict: 'E',... ...


看到自定義標簽的文檔時,文檔作者解釋的能力實在太弱,也可能是本人太笨,一下繞不過來。 看了一個stackoverflow答案,才算明白,在此貼出翻譯,以供大家參考。

   1:  app.directive('mytag',function() {
   2:      return {
   3:          restrict: 'E',
   4:          template: '<div>' +
   5:              '<input ng-model="controltype"/>' + 
   6:              '<button ng-click="controlfunc()">Parent Func</button>' + 
   7:              '<p>{{controlval}}</p>' + 
   8:           '</div>',
   9:          scope: {
  10:              /* make typeattribute="whatever" bind two-ways (=)
  11:              $scope.whatever from the parent to $scope.controltype
  12:              on this directive's scope */
  13:              controltype: '=typeattribute',
  14:              /* reference a function from the parent through
  15:                 funcattribute="somefunc()" and stick it our
  16:                 directive's scope in $scope.controlfunc */
  17:              controlfunc: '&funcattribute',
  18:              /* pass a string value into the directive */
  19:              controlval: '@valattribute'
  20:          },
  21:          controller: function($scope) {                  
  22:          }
  23:      };
  24:  });
  25:   
  26:    <div ng-controller="ParentCtrl">
  27:         <!-- your directive -->
  28:         <mytag typeattribute="parenttype" funcattribute="parentFn()" valattribute="Wee, I'm a value"></mytag>
  29:         <!-- write out your scope value -->
  30:         {{parenttype}}
  31:    </div>
  32:   
  33:   
  34:    app.controller('ParentCtrl', function($scope){ 
  35:         $scope.parenttype = 'FOO';
  36:         $scope.parentFn = function() {
  37:             $scope.parenttype += '!!!!';
  38:         }
  39:    });

 

The magic is mostly in the scope: declaration in your directive definition. having any scope: {} in there will "isolate" the scope from the parent, meaning it gets it's own scope... without that, it would use the parent's scope. The rest of the magic is in the scope's properties: scope: { 'internalScopeProperty' : '=externalAttributeName' }... where the = represents a two way binding scenario. If you change that = to a @ you'll see it just allows you to pass a string as an attribute to the directive. The & is for executing functions from the parent scope's context.

I hope that helps.

竅門在scope: 在你自己的標簽定義中,聲明的任何 scope : {}  都會從父scope中‘隔離’出只屬於自己的scope, 如果沒有 scope: {}定義,就會直接使用父scope,其餘的特點就是scope屬性定義,  scope{ internalScopeProperty’ : ‘=externalAttributeName’ } 這裡externalAttributeName是屬性名, =代表雙向綁定的場景, 如果把 = 改成 @, 你就只允許向標簽傳遞一個字元串(這個後面在詳細講), 而 & 在這裡就是執行一個父scope上下文的function。

 

I struggled a bit with this documentation too when first getting into angular, but I will make an attempt try to clarify things for you. First, when using this scope property, it creates an "isolated scope." All this means is that it won't inherit any properties from parent scopes, and so you don't have to worry about any collisions within the scope.

在入門angular開始讀到本文檔時,我也遇到一些坑,不過我將試圖在下麵解釋清楚。 首先當使用scope時, 它創建的是一個‘隔離的scope’, 這就意味著它不從父scope繼承任何屬性, 這就是說你不需從父scope哪裡繼承任何屬性, 你不需要擔心在獨立隔離的scope里發生任何衝突

 

Now, the '@' notation means that the evaluated value in the attribute will automatically get bound into your scope for the directive. So, <my-directive foo="bar" /> would end up with the scope having a property called foo that holds the string "bar". You could also do something like <my-directive foo="{{bar}}" And then the evaluated value of {{bar}} will be bound to the scope. Since attributes are always strings, you will always end up with a string for this property in the scope when using this notation.

現在‘@’符號表示標簽里經過求值的屬性會自動綁定到你的scope裡面。 因此, <my-directive  foo=”bar” />將會在scope里有個foo的屬性裝著字元串“bar”, 你可能也想這樣寫<my-directive foo=”{{bar}}”/>, 那麼求值後的{{bar}} 將會綁定到scope中, 因為屬性總是字元串,用這種寫法你講總會看到這個屬性的值是字元串。

 

 

The '=' notation basically provides a mechanism for passing an object into your directive. It always pulls this from the parent scope of the directive, so this attribute will never have the {{}}. So, if you have <my-directive foo="bar" /> it will bind whatever is in $scope.bar into your directive in the foo property of your directive's scope. Any change's you make to foo within your scope will be refelected in bar in the parent scope, and vice versa.

I haven't used the '&' notation nearly as much as the other too, so I don't know it as well as those two. From what I understand, it allows you to evaluate expressions from the context of the parent scope. So if you have something like <my-directive foo="doStuff()" />, whenever you call scope.foo() within your directive, it will call the doStuff function in the directive's parent scope. I'm sure there's a lot more you can do with this, but I'm not as familiar with it all. Maybe someone else can explain this one in more detail.

If just the symbol is set in the scope, it will use the same name as the attribute to bind to the directives scope. For example:

scope: {
   foo1: '@',
   foo2: '=',
   foo3: '&'
}

When including the directive, there would need to be the attributes foo1, foo2, and foo3. If you want a property in your scope different than the attribute name, you can specify that after the symbol. So, the example above would be

scope: {
   foo1: '@bar1',
   foo2: '=bar2',
   foo3: '&bar3'
}

When including the directive, there would need to be the attributes bar1, bar2, and bar3, and these would get bound in the scope under properties foo1, foo2, and foo3 respectively.

I hope this helps. Feel free to ask questions with which I can clarify my answer.


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 搜集了一下網上的資源和自己看過的一些書,小小總結了一波HTTP,現在也只是很膚淺的瞭解,期望以後深入理解後能寫出更有營養的筆記。 HTTP協議的主要特點 + 支持客戶/伺服器模式。+ 簡單快速:客戶向伺服器請求服務時,只需傳送請求方法和路徑。請求方法常用的有GET、HEAD、POST。每種方法規定了 ...
  • × 目錄 [1]跟隨圖標 [2]視頻提示 [3]下拉菜單[4]邊緣對齊[5]星號 [6]全屏適應[7]半區翻圖[8]九宮格[9]等高佈局[10]整體佈局 前面的話 之前的博客文章已經詳細介紹過絕對定位的基礎知識,由於它的用途實在廣泛,於是單獨為其寫這篇關於其應用的博客。關於絕對定位的基礎知識移步至此 ...
  • 做WEB項目的過程中難免涉及到表單的處理,包括:數據校驗、數據提交、返回處理、信息提示等。 下麵的代碼就是從前不久一個項目中提煉出來的,希望對大家有些幫助。 下麵是主要的代碼片段: 說明: - form必須定義一個id,在後面會用到 - submit按鈕的data-url屬性指定了後端處理程式 - ...
  • 接著上回新聞搜索的例子。現在我們要通過路由進入一個新的頁面來查看新聞詳細內容。 react和路由並沒有什麼直接關係,用什麼路由都可以。不過使用react-router可以讓我們的代碼風格統一, 並且有些工具使用起來很方便。 先來安裝react-router庫(我目前安裝的版本是2.0.1,跟1.x版 ...
  • 出處:http://www.zhangxinxu.com/study/201603/icon-text-vertical-align.html css html 效果圖1 小字型大小 2 大字型大小 ...
  • html5繪製折線圖詳細代碼 運行結果如下: ...
  • 觸摸事件是移動瀏覽器特有的HTML5事件,雖然click事件在pc和移動端更通用,但是在移動端會出現300ms延遲,較為影響用戶體驗,300ms延遲來自判斷雙擊和長按,因為只有預設等待時間結束以確定沒有後續動作發生時,才會觸發click事件。所以觸摸事件反應更快,體驗更好。 觸摸事件的類型: 為了區 ...
  • 現在若是我們要在動畫結束時候加一個事件該怎麼辦呢? 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 div { width: 100px; height: 100px; background: pink; transition: width 1s; - ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...