欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

使用Angular.js開發(fā)的注意事項(xiàng)

 更新時(shí)間:2016年10月19日 14:50:44   投稿:daisy  
這篇文章主要記錄了一些在學(xué)習(xí)和使用angular.js踩到的坑和需要注意的點(diǎn),方便以后自己查閱,也給同樣遇到這些問題的朋友們一些幫助,有需要的朋友們下面來一起看看吧。

前言

近期一直在玩Angularjs,不得不說,相對(duì)于Knockout,Angularjs這一MVVM框架更強(qiáng)大,也更復(fù)雜,各種教程網(wǎng)上到處都是,不過真正用到項(xiàng)目的時(shí)候會(huì)遇到各種坑。

一、ng-repeat

ng-repeat 用于標(biāo)識(shí)某個(gè) elem 需要重復(fù)輸出,同時(shí)重復(fù)輸出的內(nèi)容需為唯一

<div ng-app="app" ng-controller="control">
  <h3 ng-repeat="content in repeatContent">ng-repeat: {{ content }}</h3>
</div>
let app = angular.module("app", []);
app.controller("control", ($scope) => {
  // 輸出李濱泓
  $scope.repeatContent = ["李", "濱", "泓"];
  // 下面存在兩個(gè)“泓”,會(huì)報(bào)錯(cuò)
  // $scope.repeatContent = ["李", "濱", "泓", "泓"];
})

二、provider, service, factory 之間的關(guān)系

factory

factory 很像 service,不同之處在于,service 在 Angular 中是一個(gè)單例對(duì)象,即當(dāng)需要使用 service 時(shí),使用 new 關(guān)鍵字來創(chuàng)建一個(gè)(也僅此一個(gè))service。而 factory 則是一個(gè)普通的函數(shù),當(dāng)需要用時(shí),他也僅僅是一個(gè)普通函數(shù)的調(diào)用方式,它可以返回各種形式的數(shù)據(jù),例如通過返回一個(gè)功能函數(shù)的集合對(duì)象來將供與使用。

定義:

let app = angular.module("app", []);

// 這里可以注入 $http 等 Provider
app.factory("Today", () => {
  let date = new Date();
  return {
    year: date.getFullYear(),
    month: date.getMonth() + 1,
    day: date.getDate()
  };
});

使用注入:

app.controller("control", (Today) => {
  console.log(Today.year);
  console.log(Today.month);
  console.log(Today.day);
});

service

service 在使用時(shí)是一個(gè)單例對(duì)象,同時(shí)也是一個(gè) constructor,它的特點(diǎn)讓它可以不返回任何東西,因?yàn)樗褂?new 關(guān)鍵字新建,同時(shí)它可以用在 controller 之間的通訊與數(shù)據(jù)交互,因?yàn)?controller 在無用時(shí)其作用域鏈會(huì)被銷毀(例如使用路由跳轉(zhuǎn)到另一個(gè)頁面,同時(shí)使用了另一個(gè) controller)

定義:

let app = angular.module("app", []);

// 這里可以注入 $http 等 Provider
// 注意這里不可以使用 arrow function
// arrow function 不能作為 constructor
app.service("Today", function() {
  let date = new Date();
  this.year = date.getFullYear();
  this.month = date.getMonth() + 1;
  this.day = date.getDate();
});

使用注入:

app.controller("control", (Today) => {
  console.log(Today.year);
  console.log(Today.month);
  console.log(Today.day);
});

provider

provider 是 service 的底層創(chuàng)建方式,可以理解 provider 是一個(gè)可配置版的 service,我們可以在正式注入 provider 前對(duì) provider 進(jìn)行一些參數(shù)的配置。

定義:

let app = angular.module("app", []);

// 這里可以注入 $http 等 Provider
// 注意這里不可以使用 arrow function
// arrow function 不能作為 constructor
app.provider("Today", function() {
  this.date = new Date();
  let self = this;

  this.setDate = (year, month, day) => {
    this.date = new Date(year, month - 1, day);
  }

  this.$get = () => {
    return {
      year: this.date.getFullYear(),
      month: this.date.getMonth() + 1,
      day: this.date.getDate()
    };
  };
});

使用注入:

// 這里重新配置了今天的日期是 2015年2月15日
// 注意這里注入的是 TodayProvider,使用駝峰命名來注入正確的需要配置的 provider
app.config((TodayProvider) => {
  TodayProvider.setDate(2015, 2, 15);
});

app.controller("control", (Today) => {
  console.log(Today.year);
  console.log(Today.month);
  console.log(Today.day);
});

三、handlebars 與 angular 符號(hào)解析沖突

場(chǎng)景:

當(dāng)我使用 node.js 作為服務(wù)端,而其中使用了 handlebars 作為模板引擎,當(dāng) node.js 對(duì)某 URL 進(jìn)行相應(yīng)并 render,由于其模板使用 { {} } 作為變量解析符號(hào)。同樣地,angular 也使用 { {} } 作為變量解析符號(hào),所以當(dāng) node.js 進(jìn)行 render 頁面后,如果 { {} } 內(nèi)的變量不存在,則該個(gè)區(qū)域會(huì)被清空,而我的原意是這個(gè)作為 angular 的解析所用,而不是 handlebars 使用,同時(shí)我也想繼續(xù)使用 handlebars,那么此時(shí)就需要將 angular 默認(rèn)的 { {} } 解析符號(hào)重新定義。即使用依賴注入 $interpolateProvider 進(jìn)行定義,如下示例:

app.config($interpolateProvider => {
  $interpolateProvider.startSymbol('{[{');
  $interpolateProvider.endSymbol('}]}');
});

四、ng-annotate-loader

ng-annotate-loader 應(yīng)用于 webpack + angular 的開發(fā)場(chǎng)景,是用于解決 angular 在進(jìn)行 JS 壓縮后導(dǎo)致依賴注入失效并出現(xiàn)錯(cuò)誤的解決方法

安裝

$ npm install ng-annotate-loader --save-dev

配置

// webpack.config.js
{
  test: /\.js?$/,
  exclude: /(node_modules|bower_components)/,
  loader: 'ng-annotate!babel?presets=es2015'
},

五、雙向數(shù)據(jù)綁定

當(dāng)我們使用非 Angular 自帶的事件時(shí),$scope 里的數(shù)據(jù)改變并不會(huì)引起 $digest 的 dirty-checking 循環(huán),這將導(dǎo)致當(dāng) model 改變時(shí),view 不會(huì)同步更新,這時(shí)我們需要自己主動(dòng)觸發(fā)更新

HTML

<div>{{ foo }}</div>
<button id="addBtn">go</button>

JavaScript

app.controller("control", ($scope) => {
  $scope.foo = 0;
  document.getElementById("addBtn").addEventListener("click", () => {
    $scope.foo++;
  }, false);
})

很明顯,示例的意圖是當(dāng)點(diǎn)擊 button 時(shí),foo 自增長并更新 View,但是實(shí)際上,$scope.foo 是改變了,但是 View 并不會(huì)刷新,這是因?yàn)?foo 并沒有一個(gè) $watch 檢測(cè)變化后 $apply,最終引起 $digest,所以我們需要自己觸發(fā) $apply 或者創(chuàng)建一個(gè) $watch 來觸發(fā)或檢測(cè)數(shù)據(jù)變化

JavaScript(使用 $apply)

app.controller("control", ($scope) => {
  $scope.foo = 0;
  document.getElementById("addBtn").addEventListener("click", () => {
    
    $scope.$apply(function() {
      $scope.foo++;
    });

  }, false);
})

JavaScript(使用 $watch & $digest)

app.controller("control", ($scope) => {
  $scope.foo = 0;
  $scope.flag = 0;

  $scope.$watch("flag", (newValue, oldValue) => {

    // 當(dāng) $digest 循環(huán)檢測(cè) flag 時(shí),如果新舊值不一致將調(diào)用該函數(shù)
    $scope.foo = $scope.flag;
  });

  document.getElementById("addBtn").addEventListener("click", () => {
    
    $scope.flag++;
    // 主動(dòng)觸發(fā) $digest 循環(huán)
    $scope.$digest();
  }, false);
})

六、$watch(watchExpression, listener, [objectEquality])

注冊(cè)一個(gè) listener 回調(diào)函數(shù),在每次 watchExpression 的值發(fā)生改變時(shí)調(diào)用

watchExpression 在每次 $digest 執(zhí)行時(shí)被調(diào)用,并返回要被檢測(cè)的值(當(dāng)多次輸入同樣的值時(shí),watchExpression 不應(yīng)該改變其自身的值,否則可能會(huì)引起多次的 $digest 循環(huán),watchExpression 應(yīng)該冪等)

listener 將在當(dāng)前 watchExpression 返回值和上次的 watchExpression 返回值不一致時(shí)被調(diào)用(使用 !== 來嚴(yán)格地判斷不一致性,而不是使用 == 來判斷,不過 objectEquality == true 除外)

objectEquality 為 boolean 值,當(dāng)為 true 時(shí),將使用 angular.equals 來判斷一致性,并使用 angular.copy 來保存此次的 Object 拷貝副本供給下一次的比較,這意味著復(fù)雜的對(duì)象檢測(cè)將會(huì)有性能和內(nèi)存上的問題

七、$apply([exp])

$apply 是 $scope 的一個(gè)函數(shù),用于觸發(fā) $digest 循環(huán)

$apply 偽代碼

function $apply(expr) {
  try {
    return $eval(expr);
  } catch (e) {
    $exceptionHandler(e);
  } finally {
    $root.$digest();
  }
}

使用 $eval(expr) 執(zhí)行 expr 表達(dá)式

如果在執(zhí)行過程中跑出 exception,那么執(zhí)行 $exceptionHandler(e)

最后無論結(jié)果,都會(huì)執(zhí)行一次 $digest 循環(huán)

總結(jié)

以上就是這篇文章的全部內(nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來一定的幫助,如果有疑問大家可以留言交流。

相關(guān)文章

  • 通過angular CDK實(shí)現(xiàn)頁面元素拖放的步驟詳解

    通過angular CDK實(shí)現(xiàn)頁面元素拖放的步驟詳解

    這篇文章主要給大家介紹了關(guān)于如何通過angular CDK實(shí)現(xiàn)頁面元素拖放的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者使用angular具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-07-07
  • AngularJS入門教程之表格實(shí)例詳解

    AngularJS入門教程之表格實(shí)例詳解

    本文主要介紹AngularJS 表格,這里給大家整理了相關(guān)知識(shí),并附代碼實(shí)例,有需要的小伙伴可以參考下
    2016-07-07
  • AngularJS 模塊化詳解及實(shí)例代碼

    AngularJS 模塊化詳解及實(shí)例代碼

    這篇文章主要介紹了AngularJS 模塊化,這里整理了詳細(xì)的資料及簡單實(shí)例代碼,實(shí)現(xiàn)效果圖,有需要的小伙伴可以參考下
    2016-09-09
  • AngularJS上拉加載問題解決方法

    AngularJS上拉加載問題解決方法

    這篇文章主要介紹了AngularJS上拉加載問題解決方法的相關(guān)資料,該問題在項(xiàng)目中一直存在,小編給大家分享解決辦法,需要的朋友可以參考下
    2016-05-05
  • 在 Angular 中實(shí)現(xiàn)搜索關(guān)鍵字高亮示例

    在 Angular 中實(shí)現(xiàn)搜索關(guān)鍵字高亮示例

    本篇文章主要介紹了在 Angular 中實(shí)現(xiàn)搜索關(guān)鍵字高亮示例,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2017-03-03
  • Angular2表單自定義驗(yàn)證器的實(shí)現(xiàn)

    Angular2表單自定義驗(yàn)證器的實(shí)現(xiàn)

    本文給大家介紹angular2表單自定義驗(yàn)證器的實(shí)現(xiàn),本文給大家介紹的非常詳細(xì),具有參考借鑒價(jià)值,感興趣的朋友一起看看吧
    2016-10-10
  • Angularjs 1.3 中的$parse實(shí)例代碼

    Angularjs 1.3 中的$parse實(shí)例代碼

    本文通過實(shí)例代碼給大家介紹了angularjs $parse的相關(guān)知識(shí),非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友參考下吧
    2017-09-09
  • angular-cli修改端口號(hào)【angular2】

    angular-cli修改端口號(hào)【angular2】

    本篇文章主要介紹了angular2中angular-cli修改端口號(hào)的相關(guān)知識(shí)。具有很好的參考價(jià)值。下面跟著小編一起來看下吧
    2017-04-04
  • Angular短信模板校驗(yàn)代碼

    Angular短信模板校驗(yàn)代碼

    這篇文章主要介紹了Angular短信模板校驗(yàn)代碼,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2020-09-09
  • 淺談AngularJS中ng-class的使用方法

    淺談AngularJS中ng-class的使用方法

    下面小編就為大家?guī)硪黄獪\談AngularJS中ng-class的使用方法。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2016-11-11

最新評(píng)論