EmberJS - Proprietà calcolate concatenamento di modelli a oggetti
La proprietà calcolata concatenamento viene utilizzata per l'aggregazione con una o più proprietà calcolate predefinite in un unico file property.
Sintassi
var ClassName = Ember.Object.extend ({
NameOfComputedProperty1: Ember.computed(function() {
return VariableName;
}),
NameOfComputedProperty2: Ember.computed(function() {
return VariableName;
});
});
Esempio
L'esempio seguente mostra come utilizzare le proprietà calcolate come valori per creare nuove proprietà calcolate:
import Ember from 'ember';
export default function() {
var Person = Ember.Object.extend ({
firstName: null,
lastName: null,
age: null,
mobno: null,
//Defining the Details1 and Details2 computed property function
Details1: Ember.computed('firstName', 'lastName', function() {
return this.get('firstName') + ' ' + this.get('lastName');
}),
Details2: Ember.computed('age', 'mobno', function() {
return 'Name: ' + this.get('Details1') + '<br>' + ' Age: ' + this.get('age') +
'<br>' + ' Mob No: ' + this.get('mobno');
}),
});
var person_details = Person.create ({
//initializing the values for variables
firstName: 'Jhon',
lastName: 'Smith',
age: 26,
mobno: '1234512345'
});
document.write("<h2>Details of the Person: <br></h2>");
//displaying the values by get() method
document.write(person_details.get('Details2'));
}
Ora apri il file app.js e aggiungi la seguente riga all'inizio del file:
import chainingcomputedproperties from './chainingcomputedproperties';
Dove, chainingcomputedproperties è un nome del file specificato come "chainingcomputedproperties.js" e creato nella cartella "app".
Ora, chiama le "chainingcomputedproperties" ereditate in fondo, prima dell'esportazione. Esegue la funzione chainingcomputedproperties che viene creata nel file chainingcomputedproperties.js -
chainingcomputedproperties();
Produzione
Esegui il server ember e riceverai il seguente output: