我试图通过参数将javascript对象发送到Struts2自动完成操作。但它不起作用。
这是我的代码:
<script>
var nameList = new Array();
function func1(element)
{
console.log(element.value);
var index = nameList.indexOf(element.value);
element.checked ? nameList.push(element.value) : nameList.splice(index,1);
console.log(nameList.length+"---- "+nameList);
}
</script>
<s:form name="baseForm" id="baseForm">
<table width="100%" >
<tr>
<td ><s:text name="Units" /></td>
<td>
<s:iterator value="units" status="itr" id="un">
<input type="checkbox" onclick="func1(this)"
name="unitList[<s:property value="#itr.index"/>]"
value="<s:property value="#un" />" />
</s:iterator>
</td>
</tr>
<tr>
<td ><s:text name="Groups"/></td>
<td width="80%">
<sd:autocompleter href='get_groups.action?unitList=%{nameList}' id='unitAutoComplete' name='unitGroup' loadOnTextChange='true'
loadMinimumCount='1' showDownArrow='false' autoComplete='false' />
</td>
</tr>
</table>
</s:form>
根据所选的单位,应在自动填充中填充论坛。
所以我的第一个问题是是否可以通过参数将javascript对象发送到struts2动作中?
如果是,请建议我如何将javascript对象作为参数传递。
答案 0 :(得分:0)
您无法在同一请求中执行此操作。 autocompleter标记在服务器端呈现,但是您希望在已经呈现时使用JavaScript在客户端修改它。
最好的办法是对服务器进行ajax调用,并将变量传递给执行该操作的操作,以修改自动完成操作返回的列表。
如何将JavaScript对象传递给服务器,您应该知道您需要JSON格式。您可以阅读Action to accept dynamic json data from user interface以获取有关如何将JavaScript对象转换为JSON并将其发送到操作的更多信息。