<portlet:actionURL name="addBook" var="addBookURL" />
public void addBook(ActionRequest request, ActionResponse response) throws IOException, PortletException {
}
嗨,这是我的 Alloy UI 代码,用于调用我的 MVCPortlet 的 Action 类 addBook 方法。
我的问题是,我不想在我的 UI 中使用 Alloy UI,而是使用纯 JavaScript/Jquery。
那么是否有可能在纯 JavaScript 中有 equaveleint 代码?
<aui:form action="<%= addBookURL.toString() %>" method="post">
<aui:input type="text" name="name"></aui:input>
<aui:input type="password" name="pwd"></aui:input>
<aui:button type="submit"></aui:button>
</aui:form>