3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

playframework:@helper.inputText(xxForm("hoge"))エラー

Posted at

環境条件

  • play framework 2.4
  • eclipse 4.3
@helper.inputText(userForm("name"))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

エラー表示内容


この行で見つかった複数の注釈:

  • not enough arguments for method apply: (implicit handler: views.html.helper.FieldConstructor, implicit messages:play.api.i18n.Messages)play.twirl.api.HtmlFormat.Appendable in class inputText. Unspecified value parameter messages.
  • could not find implicit value for parameter messages: play.api.i18n.Messages

対応内容

下記をimportして解消。

@import play.api.Play.current
@import play.api.i18n.Messages.Implicits._
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?