为 Shopify ajax 购物车添加折扣

时间:2021-03-26 08:32:59

标签: shopify shopify-template shopify-api

我正在使用 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,
            id: this.productID,
            })
        }
      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 的折扣代码,但我在他们的文档中没有看到此特定资源的任何地方。

谢谢!

0 个答案:

没有答案