EmberJS - Creazione ed eliminazione di record
È possibile creare ed eliminare i record sull'istanza del modello.
Sintassi
import Ember from 'ember';
export default Ember.Route.extend ({
model() {
//code here
},
actions:{
addNewCategory(id, name) {
this.controller.get('model').pushObject({ var1,va2});
},
deleteCategory(category) {
this.controller.get('model').removeObject(model_name);
}
}
});
Esempio
L'esempio riportato di seguito mostra la creazione e l'eliminazione dei record. Crea una nuova rotta con il nome record_demo e crea un'altra rotta all'interno di questa rotta e denominala come categorie . Ora apri il file router.js per definire i mapping degli URL -
import Ember from 'ember';
//Access to Ember.js library as variable Ember
import config from './config/environment';
//It provides access to app's configuration data as variable config
//The const declares read only variable
const Router = Ember.Router.extend ({
location: config.locationType,
rootURL: config.rootURL
});
//Defines URL mappings that takes parameter as an object to create the routes
Router.map(function() {
this.route('record_demo', function() {
this.route('categories');
});
});
//It specifies Router variable available to other parts of the app
export default Router;
Apri il file application.hbs creato in app / templates / con il codice seguente -
{{#link-to 'record_demo'}}Go to Records demo page{{/link-to}}
{{outlet}}
Quando fai clic sul collegamento sopra, si aprirà la pagina del modello record_demo, che viene creata in app / templates / . Il file record_demo.hbs contiene il codice fllowing -
<h2>Welcome...Click the below link for Categories page</h2>
{{#link-to 'record_demo.categories'}}Go to Categories page{{/link-to}}
{{outlet}}
La pagina del modello sopra apre il file categories.hbs, che viene creato in app / templates / record_demo e contiene il seguente codice:
<h2>Categories Page</h2>
<form>
<label>ID:</label>
{{input value=newCategoryId}}
<label>NAME:</label>
{{input value = newCategoryName}}
//when user adds records, the 'addNewCategory' function fires and adds
the records to model
<button type = "submit" {{action 'addNewCategory' newCategoryId newCategoryName}}>
Add to list
</button>
</form>
<ul>
{{#each model as |category|}}
<li>
Id: {{category.id}}, Name: {{category.name}}
//when user delete records, the ‘deleteCategory’ function fires and remove
the records from model
<button {{action 'deleteCategory' category}}>Delete</button>
</li>
{{/each}}
</ul>
//it counts the number of added records and removed records from the model
<strong>Category Counter: {{model.length}}</strong>
{{outlet}}
Ora apri il file categories.js creato in app / routes / record_demo con il seguente codice:
import Ember from 'ember';
export default Ember.Route.extend ({
model() {
//model will display these records when you execute the code
return [{
id: 1,
name: 'Category One'
}, {
id: 2,
name: 'Category Two'
}];
},
actions: {
//it adds records to model
addNewCategory(id, name) {
this.controller.get('model').pushObject({id,name});
},
//it removes the records from model
deleteCategory(category) {
this.controller.get('model').removeObject(category);
}
}
});
Produzione
Esegui il server ember; riceverai il seguente output -
Quando fai clic sul collegamento, si aprirà la pagina records_demo con il collegamento alla pagina delle categorie -
Successivamente, si aprirà la pagina del modello delle categorie. Immettere l'ID e il nome nella casella di input e fare clic sul pulsante Aggiungi all'elenco come mostrato nello screenshot qui sotto -
Quindi, fare clic sul pulsante Aggiungi; vedrai i record aggiunti nell'elenco e il numero di conteggi verrà incrementato -
Se desideri rimuovere i record dall'elenco, fai clic sul pulsante Elimina .