我是 struts 的新手,想知道为什么当它们似乎都在做同样的事情时,我们为什么要在以前的 html 标记上引用 struts 标记,使用 struts 标记而不是 html 标记的优势是什么。像
<s:form action="myAction">
<s:textfield name="username"></s:textfield>
<s:textfield name="password"></s:textfield>
<s:submit name="submit" value="submit"></s:submit>
</s:form>
<form action="myAction" method="post">
<input type="text" name="username"/>
<input type="text" name="password"/>
<input type="submit" name="submit"/>
</form>
google了一下,还没有得到满意的答复,请多多指教
我知道它添加了一些额外的东西,比如标签或其他东西,这对我来说很好,但我想知道它是否对性能或任何特定于请求对象的东西有任何作用,其他任何东西只是避免程序员的额外输入。