0

Play 2.1を使用しています。ヘルパーフィールドコンストラクターを使用して、選択ドロップダウンボックスを作成しました。ドロップダウンボックスには、デフォルトで「性別を選択」、男性、女性の3つのフィールドがあります。ユーザーがデフォルト値ではなく、男性または女性のいずれかを選択するようにするにはどうすればよいですか?(必須のドロップダウンフィールド)

4

1 に答える 1

1

私はPlay!Framework 2.1.0を使用しています。以下はあなたの問題に対する簡単な解決策です:

モデルは次のようになります: (以下は問題の単純なモデルです)

package models;

import play.data.validation.Constraints;

public class Gender {
   // This field must have a value (not null or not an empty string)
   @Constraints.Required
   public String gender;
}

コントローラーは次のようになります。

/** Render form with select input **/
public static Result selectInput() {
   Form<Gender> genderForm = Form.form(Gender.class);

   return ok(views.html.validselect.render(genderForm));
}

/** Handle form submit **/
public static Result validateSelectInput() {
   Form<Gender> genderForm = Form.form(Gender.class).bindFromRequest();

   if (genderForm.hasErrors()) { // check validity
      return ok("Gender must be filled!"); // can be bad request or error, etc.
   } else {
      return ok("Input is valid"); // success validating input
   }
}

テンプレート/ビューは次のようになります。

@(genderForm: Form[models.Gender])
@import views.html.helper._

@main(title = "Validate Select") {
   @form(action = routes.Application.validateSelectInput()) {
      @********** The default value for select input should be "" as a value *********@
      @select(
         field = genderForm("gender"),
         options = options("" -> "Select Gender", "M" -> "Male", "F" -> "Female")
      )

      <input type="submit" value="Post">
   }
}

参照としてこの投稿も参照してください: Use of option helper in Play Framework 2.0 templates

于 2013-03-04T12:40:34.750 に答える