是否可以在配置模式下使用AJAX?
我正在使用自定义类扩展DefaultConfigurationAction来在配置模式下自定义我的portlet。我重写了processAction和render方法,它们工作正常,但是当我尝试实现serveResource方法时,它永远不会被调用(返回状态是200 OK,但是没有获取数据,也没有打印到Liferay控制台的调试消息)。
我的serveResource方法代码:
public class TestConfigurationController extends DefaultConfigurationAction {
...
@Override
public void serveResource(PortletConfig portletConfig, ResourceRequest resourceRequest,
ResourceResponse resourceResponse) throws PortletException, IOException, Exception {
String resourceID = resourceRequest.getResourceID();
System.out.println("Resource id=" + resourceID
+ " in TestConfigurationController.serveResource()."); // this message never prints, method is not invoked
if (IMG_EDIT_ADD_NEW.equals(resourceID)) {
// more code
include(EDIT_NEW_IMAGE, context, resourceRequest, resourceResponse); // uses PortletRequestDispatcher, returns a JSPF fragment
} else {
super.serveResource(portletConfig, resourceRequest, resourceResponse);
}
}
}
我尝试了JS方面的所有选项,包括JQuery和AUI。这是configuration.jsp中的相关代码:
<portlet:resourceURL var="newImageJsp" id = "<%=IMG_EDIT_ADD_NEW%>">
</portlet:resourceURL>
<aui:button name="addNewImage" type="button" value="${addImage}"/>
<div id="<portlet:namespace/>newImageContainer">
<aui:field-wrapper name="newImageContainer" label="${addImage}">
</aui:field-wrapper>
</div>
<script type="text/javascript" charset="utf-8">
// Even this simple AUI AJAX call does not trigger serveResource method!
// AUI().ready('aui-base', 'aui-module', 'node', 'aui-io-request', function (A) {
// A.io.request('<%=newImageJsp.toString()%>');
// });
jQuery(document).ready(function () {
jQuery('#<portlet:namespace/>addNewImage').on('click', function (event) {
console.log('addNewImage clicked, url: ${newImageJsp}'); // returns correct url
jQuery.ajax({
dataType: 'text',
url: '${newImageJsp}',
success: function (data, status) {
console.log('returned resource: ' + data); // returns empty string
console.log('returned status: ' + status); // returns 200 OK, which is also in the Firebunetwork panel
$('#<portlet:namespace/>newImageContainer').html(data);
}
});
return false;
});
});
</script>
在控制台调试显示,JS工作正常,函数被调用,返回状态为200 OK。但是,返回的数据为空,并且从未调用过服务器上的serveResource方法。
作为一项实验,我也尝试设置
<aui:form action="${newImageJsp}" method="get" name="fm1">
也没有调用serveResource方法,而是返回配置的portlet的view.jsp。
最后是我的配置,与此working case完全相同:
portlet.xml中:
<portlet>
<portlet-name>test-portlet</portlet-name>
<portlet-class>org.springframework.web.portlet.DispatcherPortlet</portlet-class>
<init-param>
<name>contextConfigLocation</name>
<value>/WEB-INF/spring-context/portlet/test-portlet.xml</value>
</init-param>
<init-param>
<name>config-template</name>
<value>/WEB-INF/jsp/carousel/configuration.jsp</value>
</init-param>
<expiration-cache>0</expiration-cache>
<supports>
<mime-type>text/html</mime-type>
<portlet-mode>view</portlet-mode>
<portlet-mode>edit</portlet-mode>
</supports>
<portlet-info>
<title>Test</title>
</portlet-info>
</portlet>
和liferay-portlet.xml:
<liferay-portlet-app>
<portlet>
<portlet-name>test-portlet</portlet-name>
<icon>/icon.png</icon>
<configuration-action-class>com.test.TestConfigurationController</configuration-action-class>
<requires-namespaced-parameters>false</requires-namespaced-parameters>
<ajaxable>true</ajaxable>
<header-portlet-css>/css/main.css</header-portlet-css>
<header-portlet-javascript>/js/jquery-1.11.3.min.js</header-portlet-javascript>
<header-portlet-javascript>/js/main.js</header-portlet-javascript>
</portlet>
</liferay-portlet-app>
所以,似乎我有一个类似的问题,就像这个unresolved issue
我在想,也许这是窗口状态?配置模式总是使用“弹出”,但在所有示例中,我只使用“正常”窗口状态找到了AJAX调用。也许这就是问题?甚至可以在弹出模式下进行异步JSPF加载吗?甚至在配置窗口?我从未在配置模式中找到使用AJAX的实际示例,官方Liferay仅提供了查看模式的示例。
最后但并非最不重要的是,我在view.jsp中为视图模式测试了相同的代码,并且TestViewController中的资源服务方法被称为OK。我在这里使用了Spring注释(@ResourceMapping)。所以问题必须是Liferay和配置模式。可能是一个错误?
谢谢!
答案 0 :(得分:0)
我做了类似的事情并使用了resourceResponse中的PrintWriter对象:
PrintWriter writer = resourceResponse.getWriter();
writer.print([yourResult]);
http://liferayiseasy.blogspot.hk/2015/03/ajax-call-in-spring-mvc-portlet.html
您还可以添加类扩展MVCPortlet
您之前的view.jsp
<portlet:resourceURL var="newImageJsp" name="newImageResource"
</portlet:resourceURL>
...
// create a new class:
public class CustomResourceController extends MVCPortlet {
...
@Override(name="newImageResource") // <---- define the name attribute which match with view.jsp
public void serveResource(PortletConfig portletConfig, ResourceRequest resourceRequest,
ResourceResponse resourceResponse) throws PortletException, IOException, Exception {
String resourceID = resourceRequest.getResourceID();
System.out.println("Resource id=" + resourceID
+ " in TestConfigurationController.serveResource()."); // this message never prints, method is not invoked
if (IMG_EDIT_ADD_NEW.equals(resourceID)) {
// more code
include(EDIT_NEW_IMAGE, context, resourceRequest, resourceResponse); // uses PortletRequestDispatcher, returns a JSPF fragment
} else {
super.serveResource(portletConfig, resourceRequest, resourceResponse);
}
}
}
答案 1 :(得分:0)
所以,我尝试了liferay-portlet:resourceURL portletConfiguration="true"
和portlet:resourceURL
,也尝试了在发送之前手动解析和修改网址。资源服务方法(无论是serveResource
的实现,还是使用Spring MVC或Liferay MVC(MVCPortlet
的实现类)的全新方法)都没有在配置模式下工作。对我来说似乎是一个错误,因为在官方文档中甚至没有提到这种特性。
我的解决方案是完全避免资源服务,而是选择行动阶段(p_p_lifecycle = 1)。它在AJAX中是完全可行的,只需在我的processAction
实现类中覆盖DefaultConfigurationAction
方法。
希望这能为我节省无数个小时的时间。