首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

交付

2012-10-31 
提交1、------------------------------------------------?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?function test

提交

1、------------------------------------------------

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?function testSql(){

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?var themeName = document.forms[0].themeName.value;

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?var codeTJ3 = document.forms[0].bds_tt_hidden3.value;

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?document.forms[0].action = "testSql.reportforms?themeName="+themeName+"&codeTJ3="+codeTJ3;

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?document.forms[0].submit();

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?}

?

?

2、------------------------------------------------

?? ?function testSql(){

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?var themeName = document.forms[0].themeName.value;

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?var codeTJ3 = document.forms[0].bds_tt_hidden3.value;

?? ? ? ? ? ? ? ? ? ? ? ? ?Ext.Ajax.request({

?? ? ? ? ? ? ? ? ? ? ? ? ? ?//请求地址

?? ? ? ? ? ? ? ? ? ? ? ? ? ?url: 'testSql.reportforms?themeName='+themeName+'&codeTJ3='+codeTJ3,

?? ? ? ? ? ? ? ? ? ? ? ? ? ?success: function(response, options) {

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?//获取响应的json字符串

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?var responseArray = Ext.util.JSON.decode(response.responseText);

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?if(responseArray.success==true){

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?Ext.Msg.alert('恭喜','您已成功登录!');

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?}else{

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?Ext.Msg.alert('失败','登录失败,请重新登录');

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?}

?? ? ? ? ? ? ? ? ? ? ? ? ? ?}

?? ? ? ? ? ? ? ? ? ? ? ?});

?? ? ? ? ? ? ? ?}

3、------------------------------------------------

?? ? ? ?public void start(HttpServletRequest req, HttpServletResponse res) {

?? ? ? ? ? ? ? ?// System.out.println((String)req.getParameter("id"));

?? ? ? ? ? ? ? ?themeManager.querySqlUpdate("update t_rep_themedef set status='2' ");

?

?? ? ? ? ? ? ? ?Theme theme = (Theme) themeManager.findById((String) req

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?.getParameter("id"));

?? ? ? ? ? ? ? ?theme.setStatus("1");

?? ? ? ? ? ? ? ?boolean isSuccess = true;

?? ? ? ? ? ? ? ?String msg = "";

?? ? ? ? ? ? ? ?try {

?? ? ? ? ? ? ? ? ? ? ? ?themeService.update(theme);

?? ? ? ? ? ? ? ? ? ? ? ?msg = "启用成功";

?? ? ? ? ? ? ? ?} catch (Exception ex) {

?? ? ? ? ? ? ? ? ? ? ? ?isSuccess = false;

?? ? ? ? ? ? ? ? ? ? ? ?msg = ex.getMessage();

?? ? ? ? ? ? ? ?}

?? ? ? ? ? ? ? ?CtrlUtils.putJSONResult(isSuccess, msg, res);

?? ? ? ?}

热点排行