为 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 (将#修改为@)