Compatível com o uso de componentes em blocos e não blocos
Você pode oferecer suporte ao uso de componentes em bloco e não em bloco de um único componente usando a propriedade hasBlock .
Sintaxe
{{#if hasBlock}}
//code here
{{/if}}
Exemplo
O exemplo fornecido a seguir especifica o suporte do uso de componentes em bloco e não em um modelo. Crie uma rota com o nome comp-yield e abra o arquivo router.js para definir os mapeamentos de 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;
Crie o arquivo application.hbs e adicione o seguinte código -
//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
Abra o arquivo comp-yield.js , que é criado em app / routes / e digite o seguinte código -
import Ember from 'ember';
export default Ember.Route.extend ({
model: function () {
return {
title: "Emberjs",
author: "Tutorialspoint",
body: "This is introduction"
};
}
});
Crie um componente com o nome comp-yield e abra o arquivo de modelo do componente comp-yield.hbs criado em app / templates / com o seguinte código -
{{#comp-yield title = title}}
<p class = "author">by (blocked name){{author}}</p>
{{body}}
{{/comp-yield}}
{{comp-yield title = title}}
{{outlet}}
Abra o arquivo comp-yield.hbs criado em app / templates / components / e insira o seguinte código -
{{#if hasBlock}}
<div class = "body">{{yield}}</div>
{{else}}
<div class = "body">Tutorialspoint data is missing</div>
{{/if}}
{{yield}}
Resultado
Execute o servidor ember; você receberá a seguinte saída -
Ao clicar no link, os nomes serão bloqueados, conforme mostrado na imagem abaixo -