使用Vapor为html中的按钮添加脚本操作

时间:2017-09-27 04:51:16

标签: html swift vapor leaf

我正在使用Swift 4和Vapor 2.0开发一个Web应用程序。我有一个POST请求的方法,可以创建一个新用户:

builder.post("user", "createUser") { (request) -> ResponseRepresentable in

但我不知道如何为.leaf文件中的按钮添加操作来调用createUser方法。在.html文件中添加JavaScript操作很容易,例如<script src="js/index.js"></script>。但是对于Vapor,我在Vapor 2.0 docs

中没有看到任何提及

更新

在@Caleb Kleveter的帮助下,现在它起作用了。我更新了html页面(它仅用于测试,因此它不是一个很好的页面)带来了希望:它对于在使用vapor时面临同样问题的新手有用。

这是我的HTML内容:

    <!DOCTYPE html>
<html >
    <head>
        <meta charset="UTF-8">
            <title>Responsive Login Form</title>


            <link rel='stylesheet prefetch' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css'>

                <link rel="stylesheet" href="styles/app.css">


                </head>

                <body>
                <link href='https://fonts.googleapis.com/css?family=Ubuntu:500' rel='stylesheet' type='text/css'>
                <h3>
                <form action="/user/createUser" method="POST" class="login-form">
                <label for="username">Username:</label>
                <input type="text" placeholder="Username" name="username"/>
                <label for="password">Password:</label>
                <input type="password" placeholder="Password" name="password"/>
                <input type="submit" value="Login" class="login-button"/>
                <form>
                </h3>
                <a class="sign-up">Sign Up!</a>
                <br>
                <h6 class="no-access">Can't access your account?</h6>
                </div>
                </div>
                <!-- <div class="error-page">
                    <div class="try-again">Error: Try again?</div>
                </div> -->
                <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
                    <script src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js'></script>

                    <script  src="js/index.js"></script>

            </body>
</html>

1 个答案:

答案 0 :(得分:3)

脚本可以像在HTML中一样添加到.leaf文件中,只需添加脚本标记:

<script src="js/index.js"></script>

从查看代码,您想要的是form将数据发布到服务器。您应该将.login-form div替换为form元素:

<form action="/create-user" method="POST" class="login-form">
    <label for="username">Username:</label>
    <input type="text" placeholder="Username" name="username"/>
    <label for="password">Password:</label>
    <input type="password" placeholder="Password" name="password"/>
    <input type="submit" value="Login" class="login-button"/>
<form>
<a class="sign-up">Sign Up!</a>
<h6 class="no-access">Can't access your account?</h6>
HTML表单的

Here is the documentation

然后,您应该可以使用request.body

访问路径方法中的表单数据
func createUser(req: Request) throws -> ResponseRepresentable {
    guard let password = req.body["password"]?.string,
          let username = req.body["username"]?.string else {
             throw Abort.badRequest
    }

    // The rest of your code goes here
}

我不确定这是否有用,我还没有测试过,但我认为你明白这一点。