當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Embeer.js MutableArray compact()用法及代碼示例


Ember.js 是一個開源 JavaScript 框架,用於開發基於 Model-View-Controller (MVC) 架構的大型客戶端 Web 應用程序。 Ember.js是使用最廣泛的前端應用框架之一。它的目的是加速開發並提高生產力。目前,它被大量網站使用,包括 Square、Discourse、Groupon、Linked In、Live Nation、Twitch 和 Chipotle。

compact() 方法用於複製不包含 null 和未定義元素的數組。

用法:

compact( Array );

屬性:

  • Array: 我們必須從中創建一個不包含 null 和未定義的數組。

返回:它返回一個不包含 null 和未定義元素的數組。

第 1 步:要運行以下示例,您需要有一個 ember 項目。要創建一個,您需要先安裝ember-cli。在終端中寫入以下代碼:

npm install ember-cli

現在您可以通過輸入以下代碼來創建項目:

ember new <project-name> --lang en

步驟 2:要啟動服務器,請鍵入:

ember serve

示例 1:鍵入以下代碼以生成本示例的路由:

ember generate route compact1

應用程序/路線/compact1.js


import Route from '@ember/routing/route'; 
import { classify, w } from '@ember/string'; 
  
export default class RichestPeopleRoute extends Route { 
    richestPeople = [ 
        'elon Musk', 
        undefined, 
        'bernard Arnault and family', 
        null, 
        'jeff Bezos', 
        'Bill gates', 
        'gautam adani and family', 
        'Larry Page', 
        undefined, 
        'Warren Buffet', 
        'larry Ellison', 
        'mukesh ambani', 
        null, 
        'sergey brin', 
    ]; 
  
    init() { 
        super.init(...arguments); 
        this.richestPeople = this.richestPeople.compact(); 
    } 
    model() { 
        this.init(); 
        return this.richestPeople; 
    } 
    setupController(controller, model) { 
        super.setupController(controller, model); 
        controller.set('num', this.num); 
        controller.set('richestPeople', this.richestPeople); 
    } 
}

應用程序/模板/add-objects.hbs


{{page-title "Richest People"}} 
<h2>Top Richest People in the World</h2> 
<ul> 
    {{#each @model as |rich-person|}} 
        <li>{{rich-person}}</li> 
      {{/each}} 
</ul> 
{{outlet}}

輸出:訪問 localhost:4200/compact1 查看輸出

Ember.js MutableArray 緊湊型

示例 2:鍵入以下代碼以生成本示例的路由:

ember generate route compact2

應用程序/路線/compact2.js


import Route from '@ember/routing/route'; 
  
export default class NotepadRoute extends Route { 
    items = [ 
        'Bread', 
        'Facewash', 
        null, 
        undefined, 
        null, 
        'Egg', 
        'Pen', 
        'Medicine', 
    ]; 
    model() { 
        return this.items; 
    } 
    setupController(controller, model) { 
        super.setupController(controller, model); 
        controller.set('items', this.items); 
    } 
}

應用程序/控製器/compact2.js


import Ember from 'ember'; 
import { popObject } from '@ember/array'; 
  
export default Ember.Controller.extend({ 
    actions: { 
        removeItem() { 
            let ans = this.items.compact(); 
            alert(ans.join('\n')); 
        }, 
    }, 
});

應用程序/模板/compact2.hbs


{{page-title "compact"}} 
<h2>Your Items</h2> 
<ul> 
    {{#each @model as |i|}} 
        {{#if i}} 
              <li>{{i}}</li> 
        {{else}} 
              <li><b>undefined</b></li> 
        {{/if}} 
      {{/each}} 
</ul> 
<br /><br /> 
<div> 
    <input 
        type="button"
        id="remove-item"
        value="Remove Item"
        {{action "removeItem"}} 
      /> 
</div> 
{{outlet}}

輸出:訪問 localhost:4200/compact2 查看輸出

Ember.js MutableArray 緊湊型

參考:https://api.emberjs.com/ember/4.4/classes/MutableArray/methods/compact?anchor=compact



相關用法


注:本文由純淨天空篩選整理自satyam00so大神的英文原創作品 Ember.js MutableArray compact() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。