javascript - Binding value as html in stenciljs - Stack Overflow

I am having trouble rendering a value with custom html inside into an element.ex:this.title = 'He

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>

I am expecting something same as innerHtml behavior in JavaScript.

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 badges
Add a ment  | 

2 Answers 2

Reset to default 23 +50

You 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

相关推荐

  • javascript - Binding value as html in stenciljs - Stack Overflow

    I am having trouble rendering a value with custom html inside into an element.ex:this.title = 'He

    1天前
    30

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信