3

我用 Play 框架创建了一个表单。但我得到了一个error: cannot find symbol 我查看了播放目录中的示例代码,仍然无法弄清楚。顺便问一下,我可以使用 Play 访问 heroku 中的 PostgresSQL 吗?这是以下代码:

这是 /controllers/Application.java 中的一段代码

    final static Form<Geo> geoForm = form(Geo.class);

    public static Result showDBpage(){

          //get problem here :-<
          Form<Geo> filledForm = geoForm.bindFormRequest(); 
          Geo loc = filledForm.get();
          return ok(database.render(loc));
        }

这是配置/路由:

POST    /database   controllers.Application.showDBpage()

视图/database.scala.html

@(loc: Geo)

@main("") {

    <p>This is Database pages</p>

    <p>@loc.longitute and @loc.latitute</p>

    <a href=@routes.Application.index>Back to form</a>
}

模型/Geo.java:

package models;

import java.util.*;
import javax.validation.*;
import play.data.validation.Constraints.*;

public class Geo
  {
    @Required
    public String longitute;
    @Required
    public String latitute;

    public Geo()
    {

    }

    public Geo(String longitude,String latitute)
    {
        this.longitute = longitute;
        this.latitute = latitute;
        //this.length = length;
    }
  }
4

1 回答 1

7

没有方法bindFormRequest()但是bindFromRequest()- 您的代码中有错字。

检查 API http://www.playframework.org/documentation/api/2.0.2/java/play/data/Form.html

于 2012-08-26T08:54:32.043 回答