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
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!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With