在使用Struts2中de<s:property name="role" />出现以下错误:
Attribute name invalid for tag property according to TLD
原因:
<s:property />中根本就没有name这个属性存在,所以我们根据它的tld文件会给我们提供一个错误的提示。
在<s:property default="" escape="" id="" value=""/>中只有如此的四个属性,它们分别所代表的意思是:
根据struts-2.1.6-all/struts-2.1.6/docs/docs/property.html 他们各自所代表的含义,以及所描述的内容。
名称 Required Default Evaluated Type Description
1:default false false String The default value to be used if value attribute is null
2:escape false true false Boolean Whether to escape HTML
3:value false <top of stack> false Object Value to be displayed
Attribute name invalid for tag property according to TLD
原因:
<s:property />中根本就没有name这个属性存在,所以我们根据它的tld文件会给我们提供一个错误的提示。
在<s:property default="" escape="" id="" value=""/>中只有如此的四个属性,它们分别所代表的意思是:
根据struts-2.1.6-all/struts-2.1.6/docs/docs/property.html 他们各自所代表的含义,以及所描述的内容。
名称 Required Default Evaluated Type Description
1:default false false String The default value to be used if value attribute is null
2:escape false true false Boolean Whether to escape HTML
3:value false <top of stack> false Object Value to be displayed