APIからデータを取得した後にファイルをレンダリングする必要があります。jQueryからejsをレンダリングするには?
コード
$(document).ready(function() {
$(document).delegate("#editUser", "click", function() {
var userId = $(this).data('id');
$.post("/userProfile",{"userId":userId},function(data, status){
console.log(data); //gets data here
//how to render ejs file here with the above data?
});
});
EJSファイル:(sample.ejs)
<% include header.html %>
<strong>Sample ejs</strong>
<ul>
<li><%= data.name %> says: <%= data.message %></li>
</ul>
<% include footer.html %>
どのように私はこの問題を解決することができますか?
res.render('sample', {param1: param1 ...});