我在liferay中打开一个带有portlet的弹出窗口。我想在其中传递一个值,以便变量在doView()方法中可用。
$('#<portlet:namespace/>myInfo').on('click', function(event) {
url = '<%=myUrl%>';
Liferay.Util.openWindow({
title : "My Info",
uri : url,
id : 'myWindow',
dialog : {
destroyOnClose : true,
cache : false,
modal : true,
width : 1070,
height : 800
}
});
});