页面存在时出现404错误

时间:2016-12-06 15:08:31

标签: html swift post http-status-code-404 vapor

我正在向带有HTML表单的服务器发送帖子请求。当我按下表单的提交按钮时,我得到一个404页面不存在错误。但是,如果我通过直接在地址栏中输入来转到URL,我会收到我应该从服务器获得的错误(400无效请求)。

这是我的HTML(注意我正在使用leaf):

#extend("base")

#export("head") {
    <link rel="stylesheet" href="/styles/normalize.css">
    <link rel="stylesheet" href="/styles/skeleton.css">
}

#export("body") {
    <div class="container">
        <form action="/admin/new-post" method="POST">
            <div class="row" style="padding: 25px 0 0 0;">
                <div class="six columns form-group">
                    <label for="email">Usernam</label>
                    <input class="u-full-width" type="text" placeholder="Username" id="email" name="email">
                </div>
                <div class="six columns form-group">
                    <label for="password">Password</label>
                    <input class="u-full-width" type="password" placeholder="Password" id="password" anem="password">
                </div>
            </div>
            <input type="hidden" name="_csrf" value="{{csrfToken}}">
            <button type="submit" class="button-primary">Login</button>
        </form>
    </div>
}

我的服务器代码(Swift):

import Vapor
import HTTP

final class AdminController {

    func addRoutes(to drop: Droplet) {
        let admin = drop.grouped("admin")
        drop.get("login", handler: login)
        admin.get("new-post", handler: newPost)
    }

    func login(_ request: Request)throws -> ResponseRepresentable {
        return try drop.view.make("admin-login", [])
    }

    func newPost(_ request: Request)throws -> ResponseRepresentable {
        guard let cred = request.auth.header?.basic else {
            throw Abort.badRequest
        }
        do {
            try request.auth.login(cred)
            return try drop.view.make("new-post", [])
        } catch {
            return Response(redirect: "/login?login=failed")
        }
    }
}

为什么我收到404错误?

我使用的网络框架是Vapor。

1 个答案:

答案 0 :(得分:2)

所以,看看你的Droplet,你添加了一个带有 GET -Request slf4j的新路由,但是你的表单尝试 POST 到{{1确定会失败。

尝试更改

new-post

new-post