public String getProc(String[] pStrs, String[] vStrs, int[] types,boolean[] inOuts,String string) {
String[] pStrs1={"ny","unitCode","ywh","unitName","zf","mxfs","v_message","v_result"};
String[] vStrs1={ny,unitCode,ywh,unitName,zf,mxfs,"",""};
int[] types1={Types.VARCHAR,Types.VARCHAR,Types.VARCHAR,Types.VARCHAR,Types.VARCHAR};
boolean[] inOuts1={true,true,true,true,true,true,false,false};
return this.getProc(pStrs1, vStrs1, types1, inOuts1,"P_jxqktjb");
}这是在controller写好的调用存储过程的方法 jdbc也配好了 怎么把这个方法写到jsp页面上的button按钮上 (就是在页面的input框中输入相应的ny年月点击button按钮调用存储方法生成相应的数据 )
在服务器端写好,直接传到页面不就好了吗?
@wtu文: 写个ajax
输入时间之后直接ajax后台请求,然后执行存储过程之后返回一个结果,然后根据这个结果来实现你想要的