org.apache.wicket.Request.getParameters()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(254)

本文整理了Java中org.apache.wicket.Request.getParameters方法的一些代码示例,展示了Request.getParameters的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.getParameters方法的具体详情如下:
包路径:org.apache.wicket.Request
类名称:Request
方法名:getParameters

Request.getParameters介绍

[英]Gets an array of multiple parameters by name.
[中]按名称获取多个参数的数组。

代码示例

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

  1. /**
  2. * Gets the request parameters for this component as strings.
  3. *
  4. * @return The values in the request for this component
  5. */
  6. public String[] getInputAsArray()
  7. {
  8. String[] values = getRequest().getParameters(getInputName());
  9. if (!isInputNullable())
  10. {
  11. if (values != null && values.length == 1 && values[0] == null)
  12. {
  13. // we the key got passed in (otherwise values would be null),
  14. // but the value was set to null.
  15. // As the servlet spec isn't clear on what to do with 'empty'
  16. // request values - most return an empty string, but some null -
  17. // we have to workaround here and deliberately set to an empty
  18. // string if the the component is not nullable (text components)
  19. return EMPTY_STRING_ARRAY;
  20. }
  21. }
  22. return values;
  23. }

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

  1. /**
  2. * Gets the request parameters for this component as strings.
  3. *
  4. * @return The values in the request for this component
  5. */
  6. public String[] getInputAsArray()
  7. {
  8. String[] values = getRequest().getParameters(getInputName());
  9. if (!isInputNullable())
  10. {
  11. if (values != null && values.length == 1 && values[0] == null)
  12. {
  13. // we the key got passed in (otherwise values would be null),
  14. // but the value was set to null.
  15. // As the servlet spec isn't clear on what to do with 'empty'
  16. // request values - most return an empty string, but some null -
  17. // we have to workaround here and deliberately set to an empty
  18. // string if the the component is not nullable (text components)
  19. return EMPTY_STRING_ARRAY;
  20. }
  21. }
  22. return values;
  23. }

代码示例来源:origin: org.wicketstuff/multi-text-input

  1. public void updateModel() {
  2. super.updateModel();
  3. // do one more step by setting our model with the removed items
  4. // in case the user of the component needs this convenience
  5. String[] removed = getRequest().getParameters("removed_" + getInputName());
  6. MultiTextInputModel<Collection<T>> model = (MultiTextInputModel<Collection<T>>) this.getModel();
  7. model.setRemovedItems(convertInput(removed));
  8. }

相关文章