Ember.js EmberRouter set() Method
Last Updated :
26 Apr, 2025
Ember.js is an open-source JavaScript framework used for developing large client-side web applications which is based on Model-View-Controller (MVC) architecture. Ember.js is one of the most widely used front-end application frameworks. It is made to speed up development and increase productivity. Currently, it is utilized by a large number of websites, including Square, Discourse, Groupon, Linked In, Live Nation, Twitch, and Chipotle.
The set() method sets the property’s key to the passed value. This method is the same as the object.keyName = value.
Syntax:
set( keyName, value );
Parameters:
- keyName: The property name which is to be retrieved.
- value: It is the value to set.
Return: Returns object with passed value.
Steps to Install and Run Ember.js:
Step 1: To run the following examples, you need to have an ember project. To create one, you will need to install ember-cli first. Write the below code in the terminal:
npm install ember-cli
Step 2: Now, you can create the project by typing in the following piece of code:
ember new <project-name> --lang en
To start the server, type:
ember server
Example 1: Type the following code to generate the route for this example:
ember generate route set1
app/routes/set1.js
Javascript
import Route from '@ember/routing/route' ;
import Ember from 'ember' ;
let Student = Ember.Object.extend({
firstName: null ,
lastName: null ,
init() {
alert(`${ this .get( 'firstName' )} is Listed`);
},
fullName: Ember.computed( 'firstName' , 'lastName' ,
function () {
return `${ this .firstName} ${ this .lastName}`;
}),
});
export default class PartyRoute extends Route {
students = [{
Name: 'Balit' ,
skill: 'Python' ,
Id: 'stu2' ,
},
{
Name: 'Permu' ,
skill: 'PHP' ,
Id: 'stu0' ,
},
{
Name: 'Sam' ,
skill: 'R' ,
Id: 'stu1' ,
},
{
Name: 'Pokhu' ,
skill: 'JavaScript' ,
Id: 'stu3' ,
},
{
Name: 'Tanu' ,
skill: 'Java' ,
Id: 'stu4' ,
},
{
Name: 'Arabh' ,
skill: 'c++' ,
Id: 'stu5' ,
}];
item3 = 'Gulshan' ;
item2 = 'Verma' ;
item1 = 'stu6' ;
model() {
return this .students;
}
setupController(controller, model) {
super .setupController(controller, model);
controller.set( 'students' , this .students);
controller.set( 'temp' , this .temp);
controller.set( 'item1' , this .item1);
controller.set( 'item2' , this .item2);
controller.set( 'item3' , this .item3);
}
}
|
app/controllers/set1.js
Javascript
import Controller from '@ember/controller' ;
import { action, find } from '@ember/object' ;
import Ember from 'ember' ;
let Student = Ember.Object.extend({
firstName: null ,
lastName: null ,
init() {
alert(`${ this .get( 'firstName' )} is Listed`);
},
fullName: Ember.computed( 'firstName' , 'lastName' , function () {
return `${ this .firstName} ${ this .lastName}`;
}),
Changed: Ember.observer( 'fullName' , function () {
console.log(`fullName changed to: ${ this .fullName}`);
}),
});
export default class Array2Controller extends Controller {
@action
print(data1, data2, data3) {
let temp = Student.create({
firstName: data1,
lastName: data2,
Id: data3
});
this .students.addObject(temp);
}
@action
remove(data1) {
this .students.set( '[]' ,
this .students.without( this .students.findBy( 'Name' , data1)));
}
}
|
app/templates/set1.hbs
HTML
{{yield}}
< table >
< tr >
< th >Name</ th >
< th >skill</ th >
< th >Id</ th >
</ tr >
{{#each @model as |details|}}
< tr >
< td >{{details.Name}}</ td >
< td >{{details.skill}}</ td >
< td >{{details.Id}}</ td >
</ tr >
{{/each}}
</ table >
< br />
< div >
< label >Enter Student FirstName: </ label >
{{input value=this.item3}}
</ div >
< br />
< div >
< label >Enter Student LastName: </ label >
{{input value=this.item2}}
</ div >
< br />
< div >
< label >Enter Student Id: </ label >
{{input value=this.item1}}
</ div >
< br />
< input
type = "button"
id = "set-code"
value = "Update Student details"
{{action "print" this.item3 this.item2 this.item1}}
/>
< br />
< br />
< div >
< label >Enter Student Name: </ label >
{{input value=this.item4}}
</ div >
< br />
< input
type = "button"
id = "remove-student"
value = "Remove Student"
{{action "remove" this.item4}}
/>
|
Output:

Ember.js EmberRouter set() Method
Example 2: Type the following code to generate the route for this example:
ember generate route set2
app/routes/set2.js
Javascript
import Route from '@ember/routing/route' ;
export default class FruitsRoute
extends Route {
fruits = [
{
'name' : 'Lady Finger' ,
'isFruit' : false ,
'color' : 'green'
},
{
'name' : 'Brinjal' ,
'isFruit' : false ,
'color' : 'purple'
},
{
'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;
item3;
model() {
this .set( '[]' , this .fruits)
return this ;
}
setupController(controller, model) {
super .setupController(controller, model);
controller.set( 'fruits' , this .fruits);
}
}
|
app/controllers/set2.js
Javascript
import Ember from "ember" ;
import { addObject, isAny, isEvery } from "@ember/array" ;
import EmberObject from '@ember/object' ;
const Fruit = EmberObject.extend({
init() {
alert(`Name is ${ this .get( 'name' )}`);
}
});
export default Ember.Controller.extend({
actions: {
removeItem(data) {
this .fruits.set( '[]' ,
this .fruits.without( this .fruits.findBy( 'color' , data)));
},
insertItem(data, data1, data2) {
let temp = Fruit.create({
name: data,
isFruit: data1,
color: data2
});
this .fruits.addObject(temp);
}
},
});
|
app/templates/set2.hbs
HTML
< h3 >{{yield}}</ h3 >
< table >
< tr >
< th >Name</ th >
< th >Fruit</ th >
< th >Color</ th >
</ tr >
{{#each this.fruits as |detail|}}
< tr >
< td >{{detail.name}}</ td >
< td >{{detail.isFruit}}</ td >
< td >{{detail.color}}</ td >
</ tr >
{{/each}}
</ table >
< br />< br />
< div >
< label >Enter Fruit Name: </ label >
{{input value=this.item1}}
</ div >< br />
< div >
< label >Item is Fruit: </ label >
{{input value=this.item2}}
</ div >< br />
< div >
< label >Enter Fruit color: </ label >
{{input value=this.item3}}
</ div >< br />
< div >
< input
type = "button"
id = "insert-item"
value = "Insert Fruit"
{{action "insertItem" this.item1 this.item2 this.item3}}
/>
</ div >
< br />
< div >
< label >Enter Fruit color: </ label >
{{input value=this.item4}}
</ div >< br />
< div >
< input
type = "button"
id = "remove-item"
value = "Remove Fruit"
{{action "removeItem" this.item4}}
/>
</ div >
{{outlet}}
|
Output:

Ember.js EmberRouter set() Method
Reference: https://api.emberjs.com/ember/4.6/classes/EmberRouter/methods/set?anchor=set