无法访问 Action 类中的 AJAX 输入参数

发布于 2024-10-01 23:08:13 字数 735 浏览 2 评论 0原文

JSP/JQuery 调用:-

$.ajax({
  url: "ApplyCouponCode",
  type: "POST",
  data: {couponCode: $('#PaymentMethod_couponCode').val()},
  dataType: "json",
  error: function(){
      alert('Error');
  },
  success: function(data){   
   alert('SUCCESS');
   $('#spanValidatedCoupon').text('Is coupon valid? ' + data.couponIsValid + ' couponAmount = ' + data.couponAmount);
  }

});

Action 类:

 public String applyCouponCode() throws Exception {
    if(logger.isDebugEnabled()){
        logger.debug("data: couponCode '" + couponCode + "'");    
    }
    return SUCCESS;
}

调用 Action 类方法 [applyCouponCode]。但优惠券代码为空..请告知。 couponCode 有公共 getter/setter 方法..我还需要做什么?

JSP/JQuery call:-

$.ajax({
  url: "ApplyCouponCode",
  type: "POST",
  data: {couponCode: $('#PaymentMethod_couponCode').val()},
  dataType: "json",
  error: function(){
      alert('Error');
  },
  success: function(data){   
   alert('SUCCESS');
   $('#spanValidatedCoupon').text('Is coupon valid? ' + data.couponIsValid + ' couponAmount = ' + data.couponAmount);
  }

});

Action Class:

 public String applyCouponCode() throws Exception {
    if(logger.isDebugEnabled()){
        logger.debug("data: couponCode '" + couponCode + "'");    
    }
    return SUCCESS;
}

The Action class method [applyCouponCode] is invoked. But couponCode is null.. please advise. couponCode has public getter/setter methods .. what else do i need to do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

絕版丫頭 2024-10-08 23:08:13

如果您直接前往 ApplyCouponCode?couponCode=your_coupon_code 会发生什么

What happens if you go directly at ApplyCouponCode?couponCode=your_coupon_code

黑凤梨 2024-10-08 23:08:13

我认为你的操作方法应该以 couponCode 作为参数。假设 couponCode 是字符串类型,您的操作方法应如下所示:

public String ApplyCouponCode(string couponCode)

希望这会有所帮助。

I think your action method should take couponCode as a parameter. Assuming couponCode is type string, your action method should look something like this:

public String ApplyCouponCode(string couponCode)

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文