JSP Portlet 不提交表单值
我正在使用 Liferay 门户 5.x。 我部署了一个简单的 portlet(使用 jsp 和扩展 GenericPortlet 的 servlet)。 该 portlet 将包含用户名和密码。密码字段。我可以在查看模式下看到表单。 但是,当我提交表单时,操作将发送到 Portlet 类的 processAction(),但用户名和信息将被发送到 Portlet 类的 processAction() 中。密码请求参数变为空。
有什么想法吗?
I am using Liferay portal 5.x.
I have deployed a simple portlet ( uses jsp & servlet extending GenericPortlet).
This portlet will contain username & password field. I am able to see the form in view mode.
But when i submit the form, the action is coming to processAction() of the Portlet class but the username & password request parameters are getting as null.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是 JSR 168 还是 286 portlet?
听起来您似乎确信
processAction()
方法确实被调用了。如果没有,我会首先验证这一点。关键在于表单上的操作属性。您是否使用actionURL 标记在JSP 上呈现action 属性?也就是说,每当我发现对
getParameter()
的调用返回 null 时,这意味着我拼写错误了参数,无论是在表单中输入元素的 name 属性中,还是在的参数中>getParameter()
。此外,参数区分大小写。您有机会使用表单代码和 processAction() 方法更新您的问题吗?
下面是一个提取请求参数的示例 portlet (JSR 286)(省略了 package 语句和导入):
这是一个示例 JSP:
Is this a JSR 168 or 286 portlet?
It sounds like you're confident that the
processAction()
method is actually being invoked. If not, I'd start by verifying that. The key there would be the action attribute on your form. Are you using the actionURL tag to render the action attribute on the JSP?That said, whenever I find calls to
getParameter()
returning null, it means I've misspelled the parameter, either in the name attribute on the input element in the form, or in the argument togetParameter()
. Also, the parameters are case sensitive.Any chance you could update your question with the code for the form and the
processAction()
method?Here is an example portlet(JSR 286) that pulls the request parameters (package statement and imports omitted):
Here is a sample JSP:
我们应该添加作为名称的前缀。
We should add as a prefix of name.
为每个属性添加命名空间很麻烦。避免参数命名空间的另一个解决方案是在 liferay-portlet.xml 中将属性 require-namespaced-parameters 设置为 false
Adding namespace for every attribute is troublesome. Another solution to avoid namespacing your parameters is by setting the property requires-namespaced-parameters to false in the liferay-portlet.xml