AngularJS中如何使用$parse或$eval在運行時對Scope變數賦值_AngularJS

來源:互聯網
上載者:User

在"AngularJS中自訂有關一個表格的Directive"中自訂了一個有關表格的Direcitve,其表格的表現方式是這樣的:

<table-helper datasource="customers" clumnmap="[{name: 'Name'}, {street: 'Street'}, {age: 'Age'}, {url: 'URL', hidden: true}]"></table-helper>

以上,變數colmnmap的值是事先定義在了Scope中的:

return {restrict: 'E',scope: {columnmap: '=',datasource: '='},link:link,template:template}; 

AngularJS中,還有一種運行時給Scope變數賦值的辦法,那就是在link函數中使用$parse或$eval方法

在Direcitve的呈現方面和以前一致:

<table-helper-with-parse datasource="customers" columnmap="[{name: 'Name'},...]"></table-helper-with-parse>

Directive大致是這樣:

var tableHelperWithParse = function($parse){var template = "",link = function(scope, element, attrs){var headerCols = [],tableStart = '<table>',tableEnd = '</table>',table = '',visibleProps = [],sortCol = null,sortDir = 1,columnmap = null;$scope.$watchCollection('datasource', render);//運行時賦值columnmapcolumnmap = scope.$eval(attrs.columnmap);//或者columnmap = $parse(attrs.columnmap)();wireEvents();function rener(){if(scope.datasource && scope.datasourse.length){table += tableStart;table += renderHeader();table += renderRows() + tableEnd;renderTable();}}};return {restrict: 'E',scope: {datasource: '='},link: link,template: template}}angular.module('direcitvesModule').directive('tableHelperWithParse', tableHelperWithParse);

下面給大家介紹下$parse和$eval的不同

首先,$parse跟$eval都是用來解析運算式的, 但是$parse是作為一個單獨的服務存在的。$eval是作為scope的方法來使用的。

$parse典型的使用是放在設定字串運算式映射在真實對象上的值。也可以從$parse上直接擷取到運算式對應的值。

var getter = $parse('user.name'); var setter = getter.assign; setter(scope, 'new name');getter(context, locals) // 傳入範圍,傳回值setter(scope,'new name') // 修改映射在scope上的屬性的值為‘new value'

$eval 即scope.$eval,是執行當前範圍下的運算式,如:scope.$eval('a+b'); 而這個裡的a,b是來自 scope = {a: 2, b:3};

看看源碼它的實現是

$eval: function(expr, locals) {return $parse(expr)(this, locals);},

可以找到它也是基於$parse,不過它的參數已經被固定為this,就是當前的scope,所以$eval只是在$parse基礎上的封裝而已,是一種$parse快捷的API。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.