使用post请求将nodejs变量发送到ejs模板

时间:2018-06-07 04:05:52

标签: javascript node.js express ejs

我在nodejs应用程序中使用Express JS来创建一个帖子请求。

IN INDEX.JS 我有文件

this.app.post('/profile', (req, res, next) => {                        
            let password = req.body.password;            
            let newWallet = operator.createWalletFromPassword(password);
            let projectedWallet = projectWallet(newWallet);

            res.locals.projectedWallet =  projectedWallet
            res.render('profile.ejs', {
                user : req.user,
            });
            console.log(JSON.stringify(projectedWallet));        
        });

在profile.ejs中我有

<html lang="en">
<head>
    <title>Node Authentication</title>
    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <script src="/httpServer/index.js" />
    <style>
        body        { padding-top:80px; word-wrap:break-word; }
    </style>
</head>
<br>
   <%- include header %>

   <div class="container">

    <div class="page-header text-center">
        <h1><span class="fa fa-anchor"></span> Profile Page</h1>
        <a href="/logout" class="btn btn-default btn-sm">Logout</a>

    </div>
    <div class="row">

        <!-- LOCAL INFORMATION -->
        <div class="col-sm-6">

            <div class="well">
                <h3><span class="fa fa-user"></span> Local</h3>
                    <form action="/profile" method="post">
                        <p>                                                    
                            <strong>id</strong>: <%= user.id %><br>
                            <strong>username</strong>: <%= user.username %><br>
                            <strong>password</strong>: <%= user.password %>

                        </p>    

                        <textarea id="myTextArea" cols="50" rows="10" style="margin: 0px; width: 522px; height: 111px;">
                        <%=projectedWallet %>
                        </textarea>
                        <!-- these fields will be sent to server -->
                        <input type="hidden" name="username" value="<%= user.username %>">
                        <input type="hidden" name="password" value="<%= user.password %>">
                        <button type="submit" class="btn btn-warning btn-lg" >Wallet</button>
                    </form>


            </div>
        </div>

    </div>

</div>
    <%- include footer %>

我想要的是,当我点击profile.ejs中的按钮时,帖子请求将起作用并为我做一些功能。之后,函数的结果将存储在projectedWallet变量中。当我将此projectedWallet传递给ejs文件时 - 在本例中为profile.ejs - 它将显示在textarea的值中。所以,我想让这个变量随处可见,所以我设置了

res.locals.projectedWallet =  projectedWallet

但即便如此,它仍然无效。当我单击profile.ejs中的按钮时,它返回错误projectedWallet未定义。我真的不知道接下来该做什么?!

我是否必须将此节点js文件(index.js)包含在head标记的ejs模板中?

我使用的Express JS版本是版本4.

2 个答案:

答案 0 :(得分:0)

projectedWallet

中传递res.render变量
 res.render('profile.ejs', { 
     user : req.user, 
     projectedWallet: projectedWallet });

答案 1 :(得分:0)

  1. 您可以在res.render中使用projectionWallet变量

    res.render('index', {projectedWallet:projectedWallet}, function(err, html) {
            console.log(html);
            res.send('done');
        })
    
    1. 第二个选项是使用会话并访问sesssion变量

      var session = require(&#39; express-session&#39;);

      req.session.projectedWallet = projectedWallet;