iteye_11742 2010-11-09 22:30
浏览 348
已采纳

struts 接收 jquery带参数ajax请求

 

$("input[name=#delete]").click(function(e) {
        var productTypeId = parseInt($(this).parent().parent()
                .children(".productTypeId").html());
        // var json = {
        // parameter : productTypeId
        // }
        // var strjson = JSON.stringify(json);
        alert(productTypeId);

        // var url = "controller/product/productType!deleteProductType.action";
        // var jsonObject = {
        // id : productTypeId
        // }; // JSON对象
        // var strjson = JSON.stringify(jsonObject); // 将JSON对象转变成JSON格式的字符串
        // $.post(url, {
        // json : strjson
        // }, callback);

        $.ajax({
                    url : "controller/product/productType!deleteProductType.action",
                    // dataType : "text",
                    // 这个为什么要注释掉呢?
                    data : "productType.id=productTypeId",
                    type : "post",
                    success : function(data) {
                        alert("删除成功");
                    },
                    complete : function(XMLHttpRequest, textStatus) {
                        // closeWindow();
                        alert(this);
                    },
                    error : function(data) {
                        alert("删除失败");
                    }
                });
    });

 我要把productTypeId传递给struts2 的action,action接收这个数据进行删除操作,下面是action代码:

 

public String deleteProductType() {
        // System.out.println(productType.getId());
        // JSONObject jsonObject = new JSONObject();
        // int productTypeId = Integer.parseInt(jsonObject.getJSONObject(json)
        // .getString("parameter"));
        // productTypeService.delete(ProductType.class, productTypeId);
        // System.out.println(productTypeId);
        // queryPage();
        // return "deleteProductType";
        productTypeService.delete(ProductType.class, productType.getId());
        System.out.println(productType.getId());
        return null;
    }

 控制台输出的productType.getId()为null;请朋友费心帮忙一下,只要可以让我用jquery把数据发送给action就行,即使是代码全改了;

  • 写回答

2条回答 默认 最新

  • yourname1111 2010-11-09 22:47
    关注

    [quote] data : "productType.id=productTypeId", [/quote]

    data : {'productType.id':productTypeId}

    一般这么用,如果还是不能获取,建议你使用modenDriven,或者是简单地在action里get,set

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?