Ember.js 是一個開源 JavaScript 框架,用於開發基於 Model-View-Controller (MVC) 架構的大型客戶端 Web 應用程序。 Ember.js是使用最廣泛的前端應用框架之一。它的目的是加速開發並提高生產力。目前,它被大量網站使用,包括 Square、Discourse、Groupon、Linked In、Live Nation、Twitch 和 Chipotle。
addObjects()方法是將每個對象添加到接收者中。
用法:
addObjects( objects );
參數:
- objects: 它是我們要插入到列表中的對象列表。
返回值:它返回接收者。
安裝和運行 Ember.js 的步驟:
第 1 步:要運行以下示例,您需要有一個 ember 項目。要創建一個,您需要先安裝ember-cli。在終端中寫入以下代碼:
npm install ember-cli
第 2 步:現在您可以通過輸入以下代碼來創建項目:
ember new <project-name> --lang en
要啟動服務器,請鍵入:
ember serve
示例 1:鍵入以下代碼以生成本示例的路由:
ember generate route addObjects1
應用程序/路線/addObjects1.js
import Route from '@ember/routing/route';
export default class DetailsRoute
extends Route {
details = [
{
name: 'Aaksh',
mobile: '9811129967',
city: 'Delhi',
country: 'India',
gender: 'M',
zipCode: '800020',
},
{
name: 'Sweta',
mobile: '9456712890',
city: 'Mumbai',
country: 'India',
gender: 'F',
zipCode: '400001',
},
{
name: 'Satyam',
mobile: '2222222222',
city: 'Raipur',
country: 'India',
gender: 'M',
zipCode: '110012',
},
{
name: 'Shandya',
mobile: '1122113322',
city: 'Bangalore',
country: 'India',
gender: 'F',
zipCode: '530068',
},
{
name: 'Ayushi',
mobile: '2244668800',
city: 'Thana',
country: 'India',
gender: 'F',
zipCode: '302001',
},
];
someMoreDetails = [
{
name: 'Yogesh',
mobile: '1133557799',
city: 'Chennai',
country: 'India',
gender: 'F',
zipCode: '600001',
},
{
name: 'Sunny',
mobile: '9911000000',
city: 'Masore',
country: 'India',
gender: 'M',
zipCode: '574142',
},
{
name: 'Khushi',
mobile: '8888888888',
city: 'Pune',
country: 'India',
gender: 'F',
zipCode: '111045',
},
];
city;
model() {
return this.details;
}
setupController(controller, model) {
super.setupController(controller, model);
controller.set('details', this.details);
controller.set('someMoreDetails',this.someMoreDetails);
controller.set('city', this.city);
}
}
應用程序/控製器/addObjects1.js
import Ember from 'ember';
import { addObjects, reduce }
from '@ember/array';
export default Ember.Controller.extend({
actions: {
checkCity(city) {
let foo = this.details.reduce((acc, person)=>
person.city == this.city ?
acc + person.name : acc, '');
foo ? alert(`${foo} is from ${city} `) :
alert(`No one from ${city}`);
},
addObjects() {
this.details.addObjects(this.someMoreDetails);
},
checkCode(code) {
let foo = this.details.reduce((acc, person)=>
person.zipCode == this.code ?
acc + person.name : acc, '');
foo ? alert(`${foo} from ${code} `)
: alert(`No one of ${code}`);
},
},
});
應用程序/模板/addObjects1.hbs
{{page-title "Details"}}
<h3>List of People: </h3>
<br /><br />
<table>
<tr>
<th>Name</th>
<th>Gender</th>
<th>Mobile</th>
<th>City</th>
<th>Country</th>
<th>Zip Code</th>
</tr>
{{#each @model as |detail|}}
<tr>
<td>{{detail.name}}</td>
<td>{{detail.gender}}</td>
<td>{{detail.mobile}}</td>
<td>{{detail.city}}</td>
<td>{{detail.country}}</td>
<td>{{detail.zipCode}}</td>
</tr>
{{/each}}
</table>
<br /><br />
<div>
<label>Enter City: </label>
{{input value=this.city}}
</div>
<div>
<input type="button" id="check-city"
value="Check Someone from City"
{{action 'checkCity' this.city}} />
</div>
<br /><br />
<div>
<input type="button" id="add-Details"
value="Add Some More Details"
{{action 'addObjects' }} />
</div>
{{outlet}}
輸出:訪問 localhost:4200/addObjects1 查看輸出

Ember.js ArrayProxy addObjects 方法
示例 2:鍵入以下代碼以生成本示例的路由:
ember generate route addObjects2
應用程序/路線/addObjects2.js
import Route from '@ember/routing/route';
import { } from '@ember/array';
export default class FruitsRoute
extends Route {
item1 = [
{
name: 'Apple',
isFruit: true,
color: 'red',
},
{
name: 'Grapes',
isFruit: true,
color: 'green',
},
{
name: 'Mango',
isFruit: true,
color: 'yellow',
},
{
name: 'Watermelon',
isFruit: true,
color: 'red',
},
{
name: 'Orange',
isFruit: true,
color: 'orange',
},
];
item2 = [
{
name: 'Lady Finger',
isFruit: false,
color: 'green',
},
{
name: 'Brinjal',
isFruit: false,
color: 'purple',
},
{
name: 'Potato',
isFruit: false,
color: 'brown',
},
{
name: 'Onion',
isFruit: false,
color: 'violet',
},
];
model() {
return this.item1;
}
setupController(controller, model) {
super.setupController(controller, model);
controller.set('item1', this.item1);
controller.set('item2', this.item2);
}
}
應用程序/控製器/addObjects2.js
import Ember from 'ember';
import { addObjects, reduce } from '@ember/array';
export default Ember.Controller.extend({
actions: {
Check_item() {
let ans = this.item1.reduce((acc, item ) =>
item.isFruit == true ? acc + '\n' + item.name : acc, '');
ans ? alert(`Yes it contains Fruit${ans}`)
: alert(`It doesn't contains any Fruit`)
},
Check_item2() {
let ans = this.item1.reduce((acc, item ) =>
item.isFruit == false ? acc + '\n' + item.name : acc, '');
ans ? alert(`Yes it contains Vegatabe ${ans}`) :
alert(`It doesn't contains any Vegetable`)
},
pushMoreDetails() {
this.item1.addObjects(this.item2);
},
},
});
應用程序/模板/addObjects2.hbs
{{page-title "Fruits"}}
<table style=" border-spacing : 30px">
<h3>Here is a Bucket: </h3>
<ul>
{{#each @model as |eatable|}}
<li>{{eatable.name}}</li>
{{/each}}
</ul>
</table>
<br /><br />
<input type="button" id="fruit-all"
value="List Contains Any Fruit?"
{{action 'Check_item' }} />
<br /><br />
<input type="button" id="fruit-notAll"
value="List Contains Any Vegetables?"
{{action 'Check_item2' }} />
<br /><br />
<input type="button" id="push-details"
value="Add More Details"
{{action 'pushMoreDetails' }} />
{{outlet}}
輸出:訪問 localhost:4200/addObjects2 查看輸出

Ember.js ArrayProxy addObjects 方法
參考:https://api.emberjs.com/ember/4.4/classes/ArrayProxy/methods/destroy?anchor=addObjects
相關用法
- Embeer.js ArrayProxy addObject()用法及代碼示例
- Embeer.js ArrayProxy any()用法及代碼示例
- Embeer.js ArrayProxy isDestroyed用法及代碼示例
- Embeer.js ArrayProxy content用法及代碼示例
- Embeer.js ArrayProxy cacheFor()用法及代碼示例
- Embeer.js ArrayProxy objectAtContent()用法及代碼示例
- Embeer.js ArrayProxy toString()用法及代碼示例
- Embeer.js ArrayProxy replaceContent()用法及代碼示例
- Embeer.js ArrayProxy removeObserver()用法及代碼示例
- Embeer.js ArrayProxy destroy()用法及代碼示例
- Embeer.js ArrayProxy insertAt()用法及代碼示例
- Embeer.js ArrayProxy uniqBy()用法及代碼示例
- Embeer.js ArrayProxy reduce()用法及代碼示例
- Embeer.js ArrayProxy invoke()用法及代碼示例
- Embeer.js ArrayProxy init()用法及代碼示例
- Embeer.js ArrayProxy compact()用法及代碼示例
- Embeer.js ArrayProxy set()用法及代碼示例
- Embeer.js ArrayProxy filter()用法及代碼示例
- Embeer.js ArrayProxy unshiftObject()用法及代碼示例
- Embeer.js ArrayProxy objectAt()用法及代碼示例
- Embeer.js ArrayProxy getProperties()用法及代碼示例
- Embeer.js ArrayProxy rejectBy()用法及代碼示例
- Embeer.js ArrayProxy slice()用法及代碼示例
- Embeer.js ArrayProxy without()用法及代碼示例
- Embeer.js ArrayProxy pushObject()用法及代碼示例
注:本文由純淨天空篩選整理自jeemains0neet大神的英文原創作品 Ember.js ArrayProxy addObjects() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。