如何在react中编写content属性?

时间:2019-06-15 09:23:46

标签: reactjs typescript microdata

这是我的代码

<div  itemProp={"offers"} itemScope  itemType={"http://schema.org/Offer"}>
        <span  itemProp="price" content="10.00">{10}</span>
 </div>

我收到此错误。

  

键入'{children:string; itemProp:字符串;内容:字符串; }”不能分配给“ DetailedHTMLProps,HTMLSpanElement>”类型。     类型“ DetailedHTMLProps,HTMLSpanElement>”上不存在属性“ content”。

我认为问题出在内容上。

1 个答案:

答案 0 :(得分:4)

React Typescript - Adding custom attribute

 <div itemProp={"offers"} itemScope itemType={"http://schema.org/Offer"}>
          <span itemProp="price" {...{content: '10.00'}}>
            {10}
          </span>
  </div>