如何使用VERTX处理程序来获得POST表单数据?(How to get POST form dat

2019-08-07 06:23发布

我能够获得使用缓冲处理表单数据,但它是一个无效的功能,我不能交回的数据值。 有关于4-7形式总的来说,我不想落得遍地编写相同的处理程序,因为默认功能是无效的。

HTML:

<!DOCTYPE html>
<html>    
<head><title>Login Page</title></head>
<body>
    <a href="/activateUserPage">activate user</a>
    <br/>
    <a href="/login">log in</a>
    <br/>

    <form id='login' action='/login' method='post'>
        <fieldset >
            <legend>Login</legend>
            <input type='hidden' name='submitted' id='submitted' value='1'/>

            <label for='username' >UserName: </label>
            <input type='text' name='username' id='username'  maxlength="50"/>

            <label for='password' >Password: </label>
            <input type='password' name='password' id='password' maxlength="50"/>

            <input type='submit' name='Submit' value='Submit' />
        </fieldset>
    </form>         
</body>    
</html>

Java的:

import org.jboss.netty.handler.codec.http.QueryStringDecoder;
import org.vertx.java.core.Handler;
import org.vertx.java.core.Vertx;
import org.vertx.java.core.buffer.Buffer;
import org.vertx.java.core.http.HttpServer;
import org.vertx.java.core.http.HttpServerRequest;
import org.vertx.java.core.http.RouteMatcher;
import org.vertx.java.deploy.Verticle;

import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Set;

/**
 * Created by IntelliJ IDEA.
 * User: yao
 * Date: 1/17/13
 * Time: 2:22 PM
 */

public class Main extends Verticle
{
    @Override
    public void start() throws Exception
    {
        System.out.println("starting the vertx stuff");
        final String host = "localhost";
        final String port = "8181";

        Vertx vertx = Vertx.newVertx();
        HttpServer httpServer = vertx.createHttpServer();

        ...

        httpServer.requestHandler(new Handler<HttpServerRequest>()
        {
            public void handle(HttpServerRequest req)
            {
                String path = req.path;

                /* start mapping of page urls*/
                // redirect user to the login page
                if (path.equals("/"))
                {
                    req.response.sendFile(dir + "html/loginPage.html");
                }
                ...

                /* end mapping of page urls*/

                /* start mapping of form urls */
                // login
                else if (path.equals(login))
                {
                    mainLogin();
                    getFormData(req);
                }
                ...

                /* end mapping of form urls */

                /* all other pages */
                else
                {
                    req.response.end("404 - page no exist");
                }
            }
        });

        System.out.println("vertx listening to: " + host + " " + port);
        httpServer.listen(Integer.valueOf(port), host);
    }

    ...

    private void getFormData(final HttpServerRequest req)
    {
        req.bodyHandler(new Handler<Buffer>()
        {
            @Override
            public void handle(Buffer buff)
            {
                String contentType = req.headers().get("Content-Type");
                if ("application/x-www-form-urlencoded".equals(contentType))
                {
                    QueryStringDecoder qsd = new QueryStringDecoder(buff.toString(), false);
                    Map<String, List<String>> params = qsd.getParameters();
                    System.out.println(params);
                }
            }
        });
    }
}

Answer 1:

如今BodyHandler由vertx提供,使用它isExpectMultipart将被设置为true,你将能够读取作为形式属性

request.getFormAttribute("username");//to read input named username.

只是你的实际处理程序之前添加此行:

router.route().handler(BodyHandler.create());


Answer 2:

对于Java这个完美工作:

request.expectMultiPart(true);
    request.endHandler(req->{
      String text = request.formAttributes().get("bigtext"); 
      //got it here
      //do something ...
 });


Answer 3:

我到底做了基本上是这样的:

使用后做Ajax调用,需要从表单中的数据被序列化。

$.ajax
({
    type: "POST",
    url: "/login",
    data: $('#frm_login').serialize(),
    success: function(data)
...

在后端,vertx接收该数据作为缓冲剂。 其余的是由“&”和“=”解析由分裂缓冲液中。

Map<String, String> params = new HashMap<String, String>();
String[] paramSplits = buffer.toString().split("&");
String[] valueSplits;

if (paramSplits.length > 1)
{
    for (String param : paramSplits)
    {
        valueSplits = param.split("=");
        if (valueSplits.length > 1)
        {
            // add this check to handle empty phone number fields
            params.put(decode(valueSplits[0]), decode(valueSplits[1]));
        }
    }
}

希望这会帮助别人!



Answer 4:

这可以使用在HTTP请求的formAttributes来完成。 这里是在阶的示例

  req.expectMultiPart(true) //Will expect a form
  req.endHandler({

    req.formAttributes() //This is used to access form attributes

    //some code with attributes

  })

参考: http://vertx.io/core_manual_java.html#handling-multipart-form-attributes



文章来源: How to get POST form data using VERTX handlers?