EmberJS - Relaciones
Ember.js proporciona tipos de relaciones para especificar cómo se relacionan los modelos entre sí. Hay diferentes tipos de relaciones, como la relación uno a uno se puede usar con DS.belongsTo , la relación uno a muchos se puede usar con DS.hasMany junto con DS.belongsTo y la relación muchos a muchos se puede usar con DS.hasMany .
Sintaxis
import DS from 'ember-data';
export default DS.Model.extend ({
var_name1: DS.belongsTo('model_name1'),
var_name2: DS.hasMany('model_name2')
});
Ejemplo
El ejemplo que se ofrece a continuación muestra el uso de tipos de relación. Cree dos adaptadores con los nombres cuenta y personal utilizando el siguiente comando:
ember generate adapter adapter_name
Ahora abra el archivo app / adapters / account.js y agregue el siguiente código:
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;
}
});
Abra el archivo app / adapters / staff.js y agregue el siguiente código:
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 dos modelos con los nombres cuenta y personal . Abra el archivo app / models / account.js e incluya el siguiente código:
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})
});
Ahora abra el archivo app / models / staff.js e incluya el siguiente código:
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()
});
A continuación, cree una ruta y asígnele el nombre application.js . Abra este archivo, que se crea en aplicación / rutas / y agregue el siguiente código:
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
}
});
Cree un serializador con la aplicación de nombre usando el siguiente comando:
ember generate serializer serializer_name
Abra el archivo app / serializers / application.js y agregue el siguiente código:
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
}
});
Abra el archivo application.hbs creado en app / templates / con el siguiente código:
<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}}
Salida
Ejecute el servidor ember; recibirá el siguiente resultado: