1
如何在Portlet/Jsp中顯示默認用戶註冊或用戶創建表單?Liferay:在jsp中顯示內置用戶註冊
如何在Portlet/Jsp中顯示默認用戶註冊或用戶創建表單?Liferay:在jsp中顯示內置用戶註冊
你只需要構建呈現jsp的render-url。
看看/portal-web/docroot/html/portlet/login/navigation/create_account.jsp
是如何創建URL的。
你只需要有這個方法調用PortalUtil.getCreateAccountURL(request, themeDisplay)
。
所以你的JSP代碼可能是這個樣子:
<a href=<%=PortalUtil.getCreateAccountURL(request, themeDisplay)%>> Create Account </a>
注:我沒有試過,但它應該或多或少的工作。