How to use an ejs variable inside a react render function?

試著忘記壹切 提交于 2019-12-22 11:33:56

问题


I'm passing a variable abcd to my index.ejs which in turn calls a react js file to render the index.ejs page. I've been able to access <%= abcd %> inside index.ejs but not inside the render function of react. Can you help me out?

Thanks


回答1:


I faced the same problem but with a index.html file, filled by a React component, and resolved it like this:

In index.html

<script>
    window.abcd = '<%- abcd %>';
</script>

In your react component

render: function(){
    return(
       <div>
            <p> {window.abcd} </p>
       </div>
    );
}

This worked perfectly for me, if someone has a cleaner proposition, i'm in!



来源:https://stackoverflow.com/questions/35266810/how-to-use-an-ejs-variable-inside-a-react-render-function

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!