Accessing EJS variable in Javascript logic Accessing EJS variable in Javascript logic express express

Accessing EJS variable in Javascript logic


You could directly inject the gameState variable into javascript on the page.

<% if (gameState) { %>     <h2>I have a game state!</h2>     <script>        var clientGameState = <%= gameState %>                 </script><% } %>

Another option might be to make an AJAX call back to the server once the page has already loaded, return the gameState JSON, and set clientGameState to the JSON response.

You may also be interested in this: How can I share code between Node.js and the browser?


I had the same problem. I needed to use the data not for just rendering the page, but in my js script. Because the page is just string when rendered, you have to turn the data in a string, then parse it again in js. In my case my data was a JSON array, so:

<script>  var test = '<%- JSON.stringify(sampleJsonData) %>'; // test is now a valid js object</script>

Single quotes are there to not be mixed with double-quotes of stringify. Also from ejs docs:

"<%- Outputs the unescaped value into the template"

The same can be done for arrays. Just concat the array then split again.


I feel that the below logic is better and it worked for me.

Assume the variable passed to the ejs page is uid, you can have the contents of the div tag or a h tag with the variable passed. You can access the contents of the div or h tag in the script and assign it to a variable.

code sample below : (in ejs)

<script type="text/javascript">    $(document).ready(function() {        var x = $("#uid").html();         alert(x);  // now JS variable 'x' has the uid that's passed from the node backend.    });</script><h2 style="display:none;" id="uid"><%=uid %></h2>