最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - What's the proper way of using ReactDomServer.renderToString with Typescript - Stack Overflow

programmeradmin2浏览0评论

I'm working on a Typescript app that does server-side rendering and I'm having trouble understanding the usage of ReactDomServer.renderToString and ReactDom.hydrate, specifically the type of arguments they sould receive.

I've found several examples (using JS) passing a JSX tag as the argument the following way:

ReactDomServer.renderToString(<ExampleComponent exampleProp="anyValue" />);

But when I try this on Typescript I get the following error:

Conversion of type 'RegExp' to type 'ExampleComponent' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.

The way I got it working is by invoking React.createElement on my Component:

ReactDomServer.renderToString(
  React.createElement(ExampleComponent, {exampleProp: anyValue})
)

Do you have to call React.createElement on the ponent you want to render (if so, why)? Or is it a bug/misconfiguration on my side?

I'm working on a Typescript app that does server-side rendering and I'm having trouble understanding the usage of ReactDomServer.renderToString and ReactDom.hydrate, specifically the type of arguments they sould receive.

I've found several examples (using JS) passing a JSX tag as the argument the following way:

ReactDomServer.renderToString(<ExampleComponent exampleProp="anyValue" />);

But when I try this on Typescript I get the following error:

Conversion of type 'RegExp' to type 'ExampleComponent' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.

The way I got it working is by invoking React.createElement on my Component:

ReactDomServer.renderToString(
  React.createElement(ExampleComponent, {exampleProp: anyValue})
)

Do you have to call React.createElement on the ponent you want to render (if so, why)? Or is it a bug/misconfiguration on my side?

Share Improve this question asked Mar 29, 2020 at 17:44 Pablo.mtzPablo.mtz 2124 silver badges12 bronze badges 1
  • 2 I think this is one of the few ways to do SSR React with Typescript. According to this medium post and this SO answer. – segFault Commented Mar 29, 2020 at 18:11
Add a ment  | 

1 Answer 1

Reset to default 13

My problem was that the file extension was .ts and it needed to be .tsx for typescript to properly pile JSX.

发布评论

评论列表(0)

  1. 暂无评论