微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

为 Shopify ajax 购物车添加折扣

如何解决为 Shopify ajax 购物车添加折扣

我正在使用 Shopify Ajax Cart Api 并尝试添加折扣商品。有谁知道这是否可能?我知道我可以以折扣价添加商品,但这不是我想要的体验。

当前请求如下所示:

const order = []

addToCart() {
        if(this.unlimitedAdded === true){
          console.log("pushing order w/ unlimited")
          this.order.push({
            quantity: this.quantity,id: this.productID,},{
        quantity: 1,id: 31095169613901
      })
      this.$store.commit('cart/add',this.unlimited)
        } else {
          this.order.push({
            quantity: this.quantity,})
        }
      this.$store.commit('cart/add',this.planName)
      if (window.ShopifyAnalytics) {
        console.log('Firing Shopify track data from Nuxt')
        window.ShopifyAnalytics.lib.track(
            'monorail://trekkie_storefront_added_product/1.0',{
              'currency': 'USD','productId': this.productID,'name': this.planName,'price': this.salePrice,'brand': 'Shine Bathroom','variant': this.planName,'category': 'Bathroom Assistant','nonInteraction': true,)
      }

      console.log(`Adding ${this.productID} to cart. Quantity: ${this.quantity}`)
      this.$axios.post('/cart/add.js',{items: this.order},)
      .then((response) => {
        console.log(response)
        window.location.href = '/pages/direct-checkout'
      },(error) => {
        console.log(error)
      })
    }

理想情况下,我想发送带有数量和 ID 的折扣代码,但我在他们的文档中没有看到此特定资源的任何地方。

谢谢!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。