如何从Websphere commerce CmdImpl类中的URL获取参数

时间:2014-02-04 10:33:15

标签: websphere-commerce

有没有办法在websphere commerce CmdImpl类中获取url参数。 我正在尝试这样

    SmartDataBeanImpl bean = new SmartDataBeanImpl();
    HttpServletRequest request = bean.getHttpRequest();
    String currencyId = request.getParameter("currencyId");

但我在第3行获得了NullPointer异常

2 个答案:

答案 0 :(得分:2)

假设您正在使用控制器命令,那么您应该访问URL参数,如下所示:

public void setRequestProperties(TypedProperty pRequestProperties)  {
    String currencyId = pRequestProperties.getString("currencyId", ""); 
}

答案 1 :(得分:1)

$scope.submitFrom1 = function(){
  console.log(form1);
}

$scope.submitFrom2 = function(){
  console.log(form2);
}

您会在validateParameters()方法的大多数OOB控制器命令中看到这一点。