代码:
@RequestMapping(value = "/getWorkFlowValues.do")
@ResponseBody
public List<UpdateJiraBean> getWorkFlowValues(HttpServletRequest request) {
String bothId = request.getParameter("bothId");
List<UpdateJiraBean> updateJiraBean = userService.getWorkFlowValues(bothId);
return updateJiraBean;
}
错误: - Input Username
[Arguments] ${username}
Input Text login_username_id ${username}
我可以知道为什么会收到这个错误吗?
答案 0 :(得分:2)
传入self作为方法中的第一个参数。类似的东西:
def input_username(self, arg1):
答案 1 :(得分:0)
错误消息告诉您确切的问题所在:您的关键字Input Username
只需要一个参数,但您调用它的地方只提供一个参数。