我试图在我的控制器中调用一个方法 onclick 一个按钮并将一个变量传递给同一个方法,我正在使用这样的 ajax
<c:url var="searchUrl" value="/servlet/mycontroller/searchmethod" />
$(document).ready(function()
{
$('#submit_btn').click(function(){
var dt = $('#search_data').val();
$.ajax({
type: "POST",
dataType : "json",
url : "${searchUrl}/" + dt
});
});
});
<td width="32%" align="right"><label>
<input type="text" name="transaction_id" id="search_data" class="fld_txt" />
</label></td>
<td width="15%" align="right"><label>
<input type="button" class="button_grey" name="submit" id="submit_btn" value="Search" class="button" />
我的控制器
@RequestMapping(value = "/searchUrl/{dt}", method = RequestMethod.GET)
public List<Dto> searchJobList(WebRequest request, @PathVariable String dt, Model model) throws Throwable {
System.out.println("Retrieve Id >> "+dt);
List<Dto> list = Service.getJobSearchList(dt);
return list;
}
像这样收到以下错误
http://localhost:8080/Sample/servlet/mycontroller/searchmethod/123(dt var value)
如何在控制器中调用我的搜索方法并将文本框值传递给它?我需要根据这个 dt 显示列表吗?有什么帮助吗??