- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我目前正在使用 Shopify Buy Button .
在大多数情况下,我只是复制并粘贴了嵌入代码,并没有做太多更改。
我有一些产品需要购买 5 件或更多的所述商品。
典型的添加到购物袋按钮只添加一个,在购物车内,按下时,添加/减去一个。
注意:我不想对所有商品都使用此方法,只希望嵌入购买代码的特定商品。
我搜索了 default compenents和 developer section并发现以下内容:
var events = {
addVariantToCart: function (product) {},
updateQuantity: function (product) {},
...
}
我想这可能是我要找的东西,但我找不到关于如何更新所述产品的任何具体细节。
如果有人能在正确的方向上帮助或指导我,我将不胜感激。
我的嵌入代码
<div id='product-component-ITEM-ID'></div>
<script type="text/javascript">
/*<![CDATA[*/
(function () {
var scriptURL = 'https://sdks.shopifycdn.com/buy-button/latest/buy-button-storefront.min.js';
if (window.ShopifyBuy){if(window.ShopifyBuy.UI){ShopifyBuyInit();}else{loadScript();}}else{loadScript();}
function loadScript() {var script = document.createElement('script');script.async = true;script.src = scriptURL;(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(script);script.onload = ShopifyBuyInit;}
function ShopifyBuyInit() {
var client = ShopifyBuy.buildClient({domain: 'DOMAIN.myshopify.com',apiKey: 'API-KEY',appId: '6'});
ShopifyBuy.UI.onReady(client).then(function(ui){ui.createComponent('product',{id:["ITEM-ID"],node:document.getElementById('product-component-{{page.item_id}}'),moneyFormat:'%24%7B%7Bamount%7D%7D',
options:{
"product":{
"variantId":"all",
"width":"240px",
"contents":{
"img":false,
"imgWithCarousel":false,
"title":false,
"variantTitle":false,
"price":false,
"description":false,
"buttonWithQuantity":false,
"quantity":false
},
"text":{
"button":"ADD TO BAG"
},
"styles":{
"product":{
"text-align":"left",
"@media(min-width:601px)":{
"max-width":"100%",
"margin-left":"0",
"margin-bottom":"50px"
}
},
"button":{
"background-color":"#393a39",
"font-family":"Lato,sans-serif",
"font-size":"13px",
"padding-top":"14.5px",
"padding-bottom":"14.5px",
"padding-left":"35px",
"padding-right":"35px",
":hover":{
"background-color":"#333433"
},
"border-radius":"0px",
":focus":{
"background-color":"#333433"
},
"font-weight":"normal"
},
"title":{
"font-size":"26px"
},
"price":{
"font-size":"18px"
},
"quantityInput":{
"font-size":"13px",
"padding-top":"14.5px",
"padding-bottom":"14.5px"
},
"compareAt":{
"font-size":"15px"
}
},
"googleFonts":[
"Lato"
]
},
"cart":{
"contents":{
"button":true
},
"styles":{
"button":{
"background-color":"#393a39",
"font-family":"Lato,sans-serif",
"font-size":"13px",
"padding-top":"14.5px",
"padding-bottom":"14.5px",
":hover":{
"background-color":"#333433"
},
"border-radius":"0px",
":focus":{
"background-color":"#333433"
},
"font-weight":"normal"
},
"footer":{
"background-color":"#ffffff"
}
},
"googleFonts":[
"Lato"
]
},
"modalProduct":{
"contents":{
"img":false,
"imgWithCarousel":true,
"variantTitle":false,
"buttonWithQuantity":true,
"button":false,
"quantity":false
},
"styles":{
"product":{
"@media(min-width:601px)":{
"max-width":"100%",
"margin-left":"0px",
"margin-bottom":"0px"
}
},
"button":{
"background-color":"#393a39",
"font-family":"Lato,sans-serif",
"font-size":"13px",
"padding-top":"14.5px",
"padding-bottom":"14.5px",
"padding-left":"35px",
"padding-right":"35px",
":hover":{
"background-color":"#333433"
},
"border-radius":"0px",
":focus":{
"background-color":"#333433"
},
"font-weight":"normal"
},
"quantityInput":{
"font-size":"13px",
"padding-top":"14.5px",
"padding-bottom":"14.5px"
}
},
"googleFonts":[
"Lato"
]
},
"toggle":{
"iframe":false,
"sticky":false,
"templates":{
"icon":'<i class="fa fa-shopping-bag fa-lg darkgrey" aria-hidden="true"></i>'
},
"contents":{
"icon":true,
"title":false
},
"events":{
afterInit:function (component) {
document.getElementById('cart-toggle').appendChild(component.node);
},
},
"order":[
'count',
'icon'
],
"styles":{
"toggle":{
"font-family":"Lato,sans-serif",
"background-color":"#393a39",
":hover":{
"background-color":"#333433"
},
":focus":{
"background-color":"#333433"
},
"font-weight":"normal"
},
"count":{
"font-size":"13px"
}
},
"googleFonts":[
"Lato"
]
},
"productSet":{
"styles":{
"products":{
"@media(min-width:601px)":{
"margin-left":"-20px"
}
}
}
}
}
}
);});}})();
/*]]>*/
</script>
最佳答案
经过几个小时的实验,这是我想出的解决方案。到目前为止,我的测试表明它稳健可靠,但如果您发现任何问题,请告诉我,我会尽力而为。
以下是代码,使用来自 Shopify Buy Button homepage 的示例代码.不幸的是,这不会在代码片段中运行,但如果您将其放入 HTML 文件并运行它,您就可以对其进行测试。
HTML:
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<div id='product-component-05cfb487fb6' data-minqty='5'></div>
Javascript:
function ShopifyBuyInit() {
var client = ShopifyBuy.buildClient({
domain: 'embeds.myshopify.com',
apiKey: '952162710f94aa7b7644b14b2a94f4a3',
appId: '6',
});
ShopifyBuy.UI.onReady(client).then(function(ui) {
ui.createComponent('product', {
id: [3030475907],
node: document.getElementById('product-component-05cfb487fb6'),
moneyFormat: '%24%7B%7Bamount%7D%7D',
options: {
"product": {
"styles": {
"button": {
"background-color": "#292929",
":hover": {
"background-color": "#464646"
},
":focus": {
"background-color": "#464646"
}
},
},
"events": {
"addVariantToCart": function(product) {
product.model.selectedQuantity = 1;
var minQty = $(product.node).data('minqty');
if (product.cart.model.lineItemCount < minQty) {
product.updateQuantity(function() {
return minQty - (product.cart.model.lineItemCount);
});
}
}
}
},
"cart": {
"events": {
"updateItemQuantity": function(cart) {
for (let i = 0; i < ui.components.product.length; i++) {
var product = ui.components.product[i];
var node = product.node;
if ($(node).data('minqty')) {
var minQty = $(node).data('minqty');
setTimeout(function() {
setProductQuantity(node, product, minQty, ui);
}, 1);
}
}
}
}
}
}
});
});
}
function setProductQuantity(node, product, minQty, ui) {
if (product.cart.model.lineItemCount < minQty && product.cart.model.lineItemCount > 0) {
$('.shopify-buy-cart-wrapper').find('iframe').contents().find("div[id='" + product.cart.model.lineItems[0].id + "']").find('.shopify-buy__quantity-decrement').click();
}
}
(function() {
var scriptURL = 'https://sdks.shopifycdn.com/buy-button/latest/buy-button-storefront.min.js';
window.ShopifyBuy && window.ShopifyBuy.UI ? ShopifyBuyInit() : loadScript();
function loadScript() {
var script = document.createElement('script');
script.async = true;
script.src = scriptURL;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(script);
script.onload = ShopifyBuyInit;
}
})();
这通过监听来自 Shopify Buy Button 的两个事件来实现:addVariantToCart
和 updateItemQuantity
。您要做的第一件事是向产品 div 添加一个 data-minqty
属性。稍后我们将使用该数据属性。
<div id='product-component-05cfb487fb6' data-minqty='5'></div>
第一个事件在点击添加到购物车时触发。我们将听取它,以便我们可以将 minQty
项添加到购物车(在我们的示例中,这是 5)。
"addVariantToCart": function(product) {
product.model.selectedQuantity = 1;
var minQty = $(product.node).data('minqty');
if (product.cart.model.lineItemCount < minQty) {
product.updateQuantity(function() {
return minQty - product.cart.model.lineItemCount;
});
}
}
首先将商品的选定数量设置为 1。这是因为选定数量会自动设置为上次添加的数量,如果我们是第一次将商品添加到购物车,它将 == minQty
(即 5)。然后我们从我们之前添加的数据属性中找到最小数量(product.node
是产品的 div 元素)。我们检查数量是否小于 minQty
,如果是,我们对产品运行 updateQuantity
。出于某种原因,它是相对的,所以我们使用 minQty
和 product.cart.model.lineItemCount
之间的差来运行它,这是当前数量。
第二个事件在更改购物车本身的数量时触发。我们听取它,以确保客户不会将数量减少到 minQty
以下。
"updateItemQuantity": function(cart) {
for (let i = 0; i < ui.components.product.length; i++) {
var product = ui.components.product[i];
var node = product.node;
if ($(node).data('minqty')) {
var minQty = $(node).data('minqty');
setTimeout(function() {
setProductQuantity(node, product, minQty, ui);
}, 1);
}
}
}
由于我们不确切知道购物车中的哪件商品的数量发生了变化,我们会检查所有商品并检查它们是否有 minQty
,如果有,是否有他们在下面。然后我们使用 setTimeout
,因为这个事件在 数量更新之前触发,所以如果我们在这里更改它,它只会被重置。我们称这个函数为:
function setProductQuantity(node, product, minQty, ui) {
if (product.cart.model.lineItemCount < minQty && product.cart.model.lineItemCount > 0) {
$('.shopify-buy-cart-wrapper').find('iframe').contents().find("div[id='" + product.cart.model.lineItems[0].id + "']").find('.shopify-buy__quantity-decrement').click();
}
}
此函数检查新数量是否小于 minQty
。如果不是,我们什么都不做(让数量正常更新)。如果是,我们想从购物车中移除该商品。没有“删除”按钮(它通常依赖于将数量降低到 0 才能从购物车中删除),并且由于我们有最小数量,所以这不可能发生,因此我们需要检查并手动删除它。我们只是模拟点击“数量减少”按钮。我们只需要这样做一次,因为每次我们这样做都会触发 updateItemQuantity
,因此它会自循环直到项目被删除。
我无法直接测试您的代码,但我已将我的更改添加到您的代码中,希望您能够弄明白。它确实需要 jQuery,因为我对 native Javascript 的了解不足以完成我需要做的事情。
<div id='product-component-ITEM-ID' data-minqty='5'></div>
<script type="text/javascript">
/*<![CDATA[*/
(function () {
var scriptURL = 'https://sdks.shopifycdn.com/buy-button/latest/buy-button-storefront.min.js';
if (window.ShopifyBuy){if(window.ShopifyBuy.UI){ShopifyBuyInit();}else{loadScript();}}else{loadScript();}
function loadScript() {var script = document.createElement('script');script.async = true;script.src = scriptURL;(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(script);script.onload = ShopifyBuyInit;}
function ShopifyBuyInit() {
var client = ShopifyBuy.buildClient({domain: 'DOMAIN.myshopify.com',apiKey: 'API-KEY',appId: '6'});
ShopifyBuy.UI.onReady(client).then(function(ui){ui.createComponent('product',{id:["ITEM-ID"],node:document.getElementById('product-component-{{page.item_id}}'),moneyFormat:'%24%7B%7Bamount%7D%7D',
options:{
"product":{
"variantId":"all",
"width":"240px",
"contents":{
"img":false,
"imgWithCarousel":false,
"title":false,
"variantTitle":false,
"price":false,
"description":false,
"buttonWithQuantity":false,
"quantity":false
},
"events": {
"addVariantToCart": function(product) {
product.model.selectedQuantity = 1;
var minQty = $(product.node).data('minqty');
if (product.cart.model.lineItemCount < minQty) {
product.updateQuantity(function() {
return minQty - (product.cart.model.lineItemCount);
});
}
}
}
"text":{
"button":"ADD TO BAG"
},
"styles":{
"product":{
"text-align":"left",
"@media(min-width:601px)":{
"max-width":"100%",
"margin-left":"0",
"margin-bottom":"50px"
}
},
"button":{
"background-color":"#393a39",
"font-family":"Lato,sans-serif",
"font-size":"13px",
"padding-top":"14.5px",
"padding-bottom":"14.5px",
"padding-left":"35px",
"padding-right":"35px",
":hover":{
"background-color":"#333433"
},
"border-radius":"0px",
":focus":{
"background-color":"#333433"
},
"font-weight":"normal"
},
"title":{
"font-size":"26px"
},
"price":{
"font-size":"18px"
},
"quantityInput":{
"font-size":"13px",
"padding-top":"14.5px",
"padding-bottom":"14.5px"
},
"compareAt":{
"font-size":"15px"
}
},
"googleFonts":[
"Lato"
]
},
"cart":{
"contents":{
"button":true
},
"events": {
"updateItemQuantity": function(cart) {
for (let i = 0; i < ui.components.product.length; i++) {
var product = ui.components.product[i];
var node = product.node;
if ($(node).data('minqty')) {
var minQty = $(node).data('minqty');
setTimeout(function() {
setProductQuantity(node, product, minQty, ui);
}, 1);
}
}
}
}
"styles":{
"button":{
"background-color":"#393a39",
"font-family":"Lato,sans-serif",
"font-size":"13px",
"padding-top":"14.5px",
"padding-bottom":"14.5px",
":hover":{
"background-color":"#333433"
},
"border-radius":"0px",
":focus":{
"background-color":"#333433"
},
"font-weight":"normal"
},
"footer":{
"background-color":"#ffffff"
}
},
"googleFonts":[
"Lato"
]
},
"modalProduct":{
"contents":{
"img":false,
"imgWithCarousel":true,
"variantTitle":false,
"buttonWithQuantity":true,
"button":false,
"quantity":false
},
"styles":{
"product":{
"@media(min-width:601px)":{
"max-width":"100%",
"margin-left":"0px",
"margin-bottom":"0px"
}
},
"button":{
"background-color":"#393a39",
"font-family":"Lato,sans-serif",
"font-size":"13px",
"padding-top":"14.5px",
"padding-bottom":"14.5px",
"padding-left":"35px",
"padding-right":"35px",
":hover":{
"background-color":"#333433"
},
"border-radius":"0px",
":focus":{
"background-color":"#333433"
},
"font-weight":"normal"
},
"quantityInput":{
"font-size":"13px",
"padding-top":"14.5px",
"padding-bottom":"14.5px"
}
},
"googleFonts":[
"Lato"
]
},
"toggle":{
"iframe":false,
"sticky":false,
"templates":{
"icon":'<i class="fa fa-shopping-bag fa-lg darkgrey" aria-hidden="true"></i>'
},
"contents":{
"icon":true,
"title":false
},
"events":{
afterInit:function (component) {
document.getElementById('cart-toggle').appendChild(component.node);
},
},
"order":[
'count',
'icon'
],
"styles":{
"toggle":{
"font-family":"Lato,sans-serif",
"background-color":"#393a39",
":hover":{
"background-color":"#333433"
},
":focus":{
"background-color":"#333433"
},
"font-weight":"normal"
},
"count":{
"font-size":"13px"
}
},
"googleFonts":[
"Lato"
]
},
"productSet":{
"styles":{
"products":{
"@media(min-width:601px)":{
"margin-left":"-20px"
}
}
}
}
}
}
);});}})();
function setProductQuantity(node, product, minQty, ui) {
if (product.cart.model.lineItemCount < minQty && product.cart.model.lineItemCount > 0) {
$('.shopify-buy-cart-wrapper').find('iframe').contents().find("div[id='" + product.cart.model.lineItems[0].id + "']").find('.shopify-buy__quantity-decrement').click();
}
}
/*]]>*/
</script>
关于javascript - Shopify Buy Button 最小数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44683058/
我正在为 Shopify 构建一个应用程序。我的商店以欧元为基础货币,并支持不同的货币,例如美元、新西兰元……(我将其称为活跃货币)。 我可以使用 javascript window.Shopify.
Shopify 的 documentation显示产品句柄中允许的一些字符(URL 中使用的产品标识符)。 Since handles are used for your storefront nav
如何检查当前页面是否是 theme.liquid 中的购物车页面?我试过 page.handle=='cart'但它不起作用。 最佳答案 您不需要 handle过滤器,你可以只使用: {% if te
我正在考虑为 Shopify 开发一个应用程序,它将向商店的结帐页面添加功能。如果用户不必自己将代码复制并粘贴到文件中,那将是理想的,因此我正在考虑使用 ScriptTag API ( http://
我正在为 Shopify 开发一个应用程序。目前处于开发阶段。到目前为止,我已经成功地授权了该应用程序,然后使用嵌入式应用程序 SDK 将其重定向回管理页面。但是,当我返回到管理页面时,它给我一个错误
我想知道 Shopify 中的实体可以拥有的元字段数量有何限制。例如,在产品对象的给定 namespace 下,您可以拥有 1000 个唯一的键值对吗?有硬性限制吗? 请注意,我已经查阅了 Shopi
有没有办法将 Shopify 购物车中的“继续结账”按钮重定向到另一个系统来处理销售?事实上,开发人员/设计师无法参与销售流程的最后一部分,这意味着即使是最轻微的变化也会成为无法克服的问题。有谁知道是
我正在开发一个集成 Shopify 的模块。 所以我想用真实数据测试我的应用程序。 Shopify 是否提供沙盒功能? 最佳答案 如果您创建 partners account您可以设置一个测试商店,让
我想知道 Shopify 中的实体可以拥有的元字段数量有何限制。例如,在产品对象的给定 namespace 下,您可以拥有 1000 个唯一的键值对吗?有硬性限制吗? 请注意,我已经查阅了 Shopi
我正在尝试检索博客上的最新文章。我下面的当前代码不输出任何内容。 {% for article in blogs['myblog'].articles.last %} {{ article.tit
我试图在我的节文件中使用一个变量,但它似乎没有从它的父模板继承。 例如: index.liquid {% assign foo = "bar" %} {% section 'example' %} s
我正在尝试编写一些代码来估计 Shopify 中的发货日期。我一直在学习 liquid,但在用 Ruby 编写一些逻辑时遇到了问题。我不确定 Shopify 模板是使用 Ruby 还是 Ruby on
我正在尝试为我的客户生成一个注销链接,但想为该链接应用一个类。 {{ 'layout.customer.log_out' | t | customer_logout_link }} 上面的liquid
我有 Shopify 商店,客户可以在购买前设计/定制他们的产品。并且根据所选变体的设计/定制价格可能会有所不同。但我认为 Shopify 不便于在添加到购物车时动态更改变体价格。 我可能缺少任何解决
我做了以下事情: 创建合作伙伴帐户 创建了一个开发商店 创建了一个应用。 但我似乎找不到将我的应用程序添加到我的开发商店的方法。有人可以解释一下如何将它添加到我的开发商店而不将其放入应用商店吗? 最佳
当我在 Shopify 中循环访问一个集合时,我想将该产品添加到另一个产品数组中,以便我可以再次循环访问它。 {% assign custom_products = '' %} {% for prod
我需要在 shopify 产品页面上添加自定义文本框字段。 我的要求是在产品页面上添加文本框字段,当客户在购物车中添加产品时,该文本框字段值也会显示在购物车页面和结帐页面上。 我还需要在管理员自定义订
与 Shopify API您可以设置输入字段供用户调整主题,例如: { "type": "number", "id": "products_per_page", "label": "Pro
我想为我的 shopify 应用程序使用 Polaris css 组件。我看过他们的文件 https://polaris.shopify.com/components/get-started#navi
我是 Shopify 的新手,我正在尝试配置现有主题并遵循此处指南 (https://shopify.github.io/themekit/) 的完整流程,但是当我尝试运行命令主题下载时,它显示了错误
我是一名优秀的程序员,十分优秀!