2017-04-22 9 views
0

これは私のSpringアプリケーションで使用している私のjspコードです。春のラベルタグの使用方法

<form:label path="username">Enter your user-name</form:label> 
      <form:input id="username" name="uName" path="" /><br> 
      <form:label path="username">Please enter your password</form:label> 
      <form:password id="password" name="password" path="" /><br> 
      <input type="submit" value="Submit" /> 

誰かがラベルパス属性の使用方法を教えてください。正確に何をしていますか。このパスの値を指定すると、表示中にエラーが表示されるためです。誰かが私にそれが何であるか説明してもらえますか?

+0

可能な重複http://stackoverflow.com/questions/17647050/path-attribute-in-spring) – BackSlash

+0

http://stackoverflow.com/questions/21593988/what-is-the-advantage-of-formlabel-tag-in-spring –

+0

[What is duplicate ofフォームの利点:春のラベルタグ?](http://stackoverflow.com/questions/21593988/what-is-the-advantage-of-formlabel-tag-in-spring) –

答えて

0

パスラベルは、データのバインドに使用されます。

ラベルが入力されていないことを考えると、次のような、代わりに属性「のために」とラベルを使用することができます([春Path属性]の

<label for="inputField"><spring:message code="label.input"/></label> 
関連する問題