我在JSP中有下面的代碼。問題是,當我運行此代碼,我得到以下例外:OptionTag類型中的方法setValue(String)不適用於參數(Object)
The method setValue(String) in the type OptionTag is not applicable for the arguments (Object).
有沒有人有想法?
<html:select property="selectedServices" name="specificStoreForm" multiple="true" styleClass="services">
<logic:iterate id="service" name="services" property="selectedServices">
<bean:define id="textVal" name="service" property="value" toScope="request"/>
<html:option value="<%=textVal%>">
<bean:write name="service" property="label"/>
</html:option>
</logic:iterate>
</html:select>
的異常,因爲我加入代碼更改像」> – Narayan