0

我即将对 Stripe 结帐实施优惠券,并考虑是否有办法验证输入的优惠券是否仍然有效。

Stripe 发布了一个用于结账的 jQuery 库(https://github.com/stripe/jquery.payment),但没有提及优惠券。

任何想法如何验证输入的优惠券是否有效?

谢谢

4

2 回答 2

0

在您的服务器端,您可以包括以下内容。这假设您的优惠券代码位于 coupon.rb 模型的服务器/数据库中。

# order creation controller
def create
  codes = Coupon.all.pluck(:code)
  code = params[:entered_code]

  begin
    raise "error" if codes.include? code
    # create
  rescue
    flash[:error] = "Coupon code is not valid"
    render 'new' # or something
  end
end

客户端验证会更复杂。出于安全原因,您不想将所有优惠券代码放在客户端上,但您可以启动一个 ajax 调用来检查服务器端记录以进行验证。

于 2014-07-19T16:14:54.593 回答
0

Stripe 目前只允许使用优惠券进行 Stripe Connect 订阅。

优惠券不适用于直接收费,在实际向客户收费之前,您必须自己实施自己的减少系统。

https://stripe.com/docs/recipes/coupons-for-charges

于 2016-12-16T10:10:33.113 回答