EmberJS - Relazioni
Ember.js fornisce i tipi di relazione per specificare come i modelli sono correlati tra loro. Esistono diversi tipi di relazione, ad esempio la relazione uno a uno può essere utilizzata con DS.belongsTo , la relazione uno-a-molti può essere utilizzata con DS.hasMany insieme a DS.belongsTo e la relazione molti-a-molti può essere utilizzata con DS.hasMany .
Sintassi
import DS from 'ember-data';
export default DS.Model.extend ({
var_name1: DS.belongsTo('model_name1'),
var_name2: DS.hasMany('model_name2')
});
Esempio
L'esempio riportato di seguito mostra l'uso dei tipi di relazione. Crea due adattatori con i nomi account e staff utilizzando il seguente comando:
ember generate adapter adapter_name
Ora apri il file app / adapters / account.js e aggiungi il seguente codice:
import ApplicationAdapter from './application';
//created an "account" array to store relationship data
const account = {
"data": {
"type": "account",
"id": "100",
"relationships": {
"secondVal": {
"data": {
"type": "staff",
"id": "2"
}
},
"firstVal": {
"data": {
"type": "staff",
"id": "1"
}
}
}
}
};
export default ApplicationAdapter.extend ({
//this method fetches data from 'staff' adapter
findRecord() {
//returns the data from array
return account;
}
});
Apri il file app / adapters / staff.js e aggiungi il seguente codice:
import ApplicationAdapter from './application';
import Ember from 'ember';
//values given for type and id
const relval1 = {
data: {
type: "staff",
id: "1",
attributes: {
name: 'JavaScript'
}
}
};
const relval2 = {
data: {
type: "staff",
id: "2",
attributes: {
name: 'jQuery'
}
}
};
//the variable 'relval3' pushes the data to 'relval1' and 'relval2'
const relval3 = Ember.A();
relval3.pushObject(relval1);
relval3.pushObject(relval2);
export default ApplicationAdapter.extend ({
findRecord(store, type, id) {
//finds the item id and returns to 'relval3' variable
let valret = relval3.find(function (item) {
return id === Ember.get(item, 'data.id');
});
//the searched item will passed to 'relval3' from 'valret' variable
return valret;
}
});
Crea due modelli con i nomi account e staff . Apri il file app / models / account.js e includi il codice seguente:
import DS from 'ember-data';
import Model from "ember-data/model";
import attr from "ember-data/attr";
//defines one-to-one and one-to-many relationship between models
import { belongsTo, hasMany } from "ember-data/relationships";
export default DS.Model.extend({
//when async is 'true', it will fetch related entries
firstVal: belongsTo('staff', {async: true}),
secondVal: belongsTo('staff', {async: true})
});
Ora apri il file app / models / staff.js e includi il seguente codice:
import DS from 'ember-data';
import Model from "ember-data/model";
import attr from "ember-data/attr";
import { belongsTo, hasMany } from "ember-data/relationships";
export default DS.Model.extend ({
//specifying attributes using 'attr()' method
name: attr()
});
Quindi, crea una rotta e chiamala application.js . Apri questo file, che viene creato in app / routes / e aggiungi il seguente codice:
import Ember from 'ember';
export default Ember.Route.extend ({
model(){
//returns the value of model() hook
return this.get('store').findRecord('account', 100); //retrieve a record for specific id
}
});
Crea un serializzatore con il nome application utilizzando il seguente comando:
ember generate serializer serializer_name
Apri il file app / serializers / application.js e aggiungi il seguente codice:
import DS from 'ember-data';
//it is the default serializer and works with JSON API backends
export default DS.JSONAPISerializer.extend ({
//keyForRelationship() method overwrites the naming conventions
keyForRelationship: function(key, relationship, method) {
return Ember.String.camelize(key); //returns the lowerCamelCase form of a string
}
});
Apri il file application.hbs creato in app / templates / con il seguente codice:
<h2>Model Relationships</h2>
//display the id along with the name
{{model.firstVal.id}} : {{model.firstVal.name}}
<br>
{{model.secondVal.id}} : {{model.secondVal.name}}
{{outlet}}
Produzione
Esegui il server ember; riceverai il seguente output -