Restituisce valori da un componente con rendimento

I valori possono essere restituiti da un componente utilizzando l' opzione yield .

Sintassi

{#each myval as |myval1|}}
   {{ yield myval1 }}
{{/each}}

Esempio

L'esempio riportato di seguito specifica i valori restituiti da un componente con la proprietà yield . Crea una rotta con il nome comp-yield e apri il file router.js per definire le mappature 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('comp-yield');
});

export default Router;

Crea il file application.hbs e aggiungi il codice seguente:

//link-to is a handlebar helper used for creating links
{{#link-to 'comp-yield'}}Click Here{{/link-to}}
{{outlet}} //It is a general helper, where content from other pages 
   will appear inside this section

Apri il file comp-yield.js che viene creato in app / routes / e inserisci il seguente codice:

import Ember from 'ember';

export default Ember.Route.extend ({
   model: function() {
      //an array called 'country' contains objects
      return { country: ['India', 'England', 'Australia'] }; 
   }
});

Crea un componente con il nome comp-yield e apri il file modello del componente comp-yield.hbs creato in app / templates / con il codice seguente:

{{#comp-yield country=model.country as |myval|}}
   <h3>{{ myval }}</h3>
{{/comp-yield}}
{{outlet}}

Apri il file comp-yield.hbs creato in app / templates / components / e inserisci il seguente codice:

<h2>List of countries are:</h2>
//template iterates an array named 'country'
{{#each country as |myval|}}   //each item in an array provided as blobk param 'myval'
   {{ yield myval }}
{{/each}}

Produzione

Esegui il server ember; riceverai il seguente output -

Quando fai clic sul collegamento, verrà visualizzato l'elenco degli oggetti da un array come mostrato nello screenshot qui sotto -