Supporta l'utilizzo di componenti sia a blocchi che non a blocchi
È possibile supportare l'utilizzo di componenti a blocchi e non a blocchi da un singolo componente utilizzando la proprietà hasBlock .
Sintassi
{{#if hasBlock}}
//code here
{{/if}}
Esempio
L'esempio riportato di seguito specifica il supporto dell'utilizzo di componenti sia a blocchi che non a blocchi in un modello. 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 () {
return {
title: "Emberjs",
author: "Tutorialspoint",
body: "This is introduction"
};
}
});
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 title = title}}
<p class = "author">by (blocked name){{author}}</p>
{{body}}
{{/comp-yield}}
{{comp-yield title = title}}
{{outlet}}
Apri il file comp-yield.hbs creato in app / templates / components / e inserisci il seguente codice:
{{#if hasBlock}}
<div class = "body">{{yield}}</div>
{{else}}
<div class = "body">Tutorialspoint data is missing</div>
{{/if}}
{{yield}}
Produzione
Esegui il server ember; riceverai il seguente output -
Quando fai clic sul collegamento, verranno bloccati i nomi come mostrato nello screenshot qui sotto -