React (0.13) two functions rendered by a server

Source: Internet
Author: User

1.react.rendertostring function, parameter is component, returns a string

<! DOCTYPE html>. Example-enter{color:red;} . Example-Active{color:green;} </style> varMyComponent =React.createclass ({render:function(){                        return (                            <div>hello world!</div>                        );            }                    }); varWorld = react.rendertostring (<mycomponent/>);alert (world);        Console.log (World); </script> </body>

2. Another server-side render function: React.rendertostaticmarkup, he does not have the Data property

<! DOCTYPE html>. Example-enter{color:red;} . Example-Active{color:green;} </style> varMyComponent =React.createclass ({render:function(){                        return (                            <div>hello world!</div>                        );            }                    }); //var world = react.rendertostring (<mycomponent/>);            varWorld = React.rendertostaticmarkup (<mycomponent/>);alert (world);        Console.log (World); </script> </body>

When are they used?

You should choose to use the React.rendertostaticmarkup function when and only if you are not going to render the react component on the client, such as:

      • Generate HTML e-mail
      • Generate PDFs from HTML to PDF conversions
      • Component testing

In most cases, we use react.rendertostring () to render the service side.

React (0.13) two functions rendered by a server

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.