text 有X款式可供选择
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 有X款式可供选择相关的知识,希望对你有一定的参考价值。
{%comment%}Loop through all the options and find out how many unique options within the variants{% endcomment %}
{% assign option_index = 0 %}
{% for option in product.options %}
{% capture downcased_option %}{{ option | downcase }}{% endcapture %}
{% assign option_index = forloop.index0 %}
{% assign how_many_options = 0 %}
{% assign current_options = '' %}
{% for variant in product.variants %}
{% assign current_option = variant.options[option_index] %}
{% unless current_options contains current_option %}
{% if how_many_options > 0 %}
{% assign current_options = current_options | join: '|' | append: '|' %}
{% endif %}
{% assign current_options = current_options | append: current_option %}
{% assign current_options = current_options | split: '|' | sort %}
{% assign how_many_options = current_options | size %}
{% endunless %}
{% endfor %}
{%comment%}Output the amount of options for each option. Add an 's' if there is more than one available{% endcomment %}
{% unless option == "Title" %}Available in {{current_options.size}} style{% if current_options.size > 1 %}s{% endif %}{% unless forloop.last == true %},{% endunless %}{% endunless %}
{% endfor %}
以上是关于text 有X款式可供选择的主要内容,如果未能解决你的问题,请参考以下文章
我需要用继承实现 C# 深拷贝构造函数。都有哪些图案可供选择?
如何创建一个条目小部件有一个可供选择的整数列表
SSIS - 批量插入每批有多少行可供选择?
如何显示或隐藏数字中的千位分隔符
Sandbox 2017-18 新品全线到货,中国滑手的Asia Fit款式如约而至
DataGridViewComboBox 下拉列表不显示任何可供选择的项目,下拉不起作用