如何在我的自定义标签中使用 struts 个 bean 标签?

how to use struts bean tags in my Custom tags?

我有一个自定义按钮标签来处理我的功能,我想要 struts bean 标签中的一些值来实现我的功能。我在我的自定义标签中嵌套了 struts 标签。

我在 JSP 中的代码如下所示。

<button:button  module="MyModule" subModule="MySubModule" aliasType="ButtonType" aliasName="SaveButtonGroup" 
   onClick="addNewPart('<bean:Write property="paymentNumber" name="payment" />','<bean:Write property="transactionId" name="payment" />') </button:button>

但是,我在 运行

时收到以下错误
weblogic.servlet.jsp.CompilationException: Failed to compile JSP /JSP/cdr/tdsDetails.jsp
tdsDetails.jsp:1:1: The page failed validation from validator: "org.xml.sax.SAXParseException: Attribute "name" was already specified for element "button:button".".
tdsDetails.jsp:308:59: This attribute is not recognized.
onClick="addNewPart('<bean:Write    property="paymentNumber" name="payment" />','<bean:Write    property="transactionId" name="payment" />');"></button:button>

解决方案是什么?预先感谢您的帮助。

您可以通过放弃 Struts 标签并仅使用 EL 来简化:

<button:button  module="MyModule" subModule="MySubModule" aliasType="ButtonType" aliasName="SaveButtonGroup" 
   onClick="addNewPart('${payment.paymentNumber}','${payment.transactionId}')"> </button:button>