I am having trouble rendering a value with custom html inside into an element. ex:
this.title = 'Hello <b> stencil </b>'; << response value from an API
Binding:
<h1>{this.title}</h1>
I am expecting something same as innerHtml behavior in JavaScript.
I am having trouble rendering a value with custom html inside into an element. ex:
this.title = 'Hello <b> stencil </b>'; << response value from an API
Binding:
<h1>{this.title}</h1>
Share Improve this question edited May 9, 2018 at 9:07 Mohamad Al Asmar asked Apr 23, 2018 at 14:48 Mohamad Al AsmarMohamad Al Asmar 1,1871 gold badge17 silver badges36 bronze badgesI am expecting something same as innerHtml behavior in JavaScript.
2 Answers
Reset to default 23 +50You can use
<h1 innerHTML={this.title} />
This is not a good practice in JSX, it is against the idea of virtual DOM and it's not creating virtual nodes.
You should try like this
this.salute = 'Hello';
this.name='stencil';
Binding
<h1>{this.salute} <b>{this.name}</b></h1>
Or if it is a more plex situation, build another smaller ponent.
However using innerHTML
will work, but should be used in different situations more details here(at the bottom of the page).
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743547271a4469673.html
评论列表(0条)