我们如何在shopify的settings_schema.json中设置min和max属性

时间:2019-04-16 08:11:09

标签: javascript jquery shopify

我正在尝试在settings.schema.json文件中为输入字段添加最大字符值。但它显示出以下错误:

错误:无效的块“幻灯片”:设置为id =“ title_2”'max'的属性无效

这是我的代码:

{
    "type": "text",
    "id": "title_2",
    "label": "Title 2",
    "placeholder": "Link Title",
"max":10
  },

max属性对于Range类型来说效果很好。

"blocks": [
{
  "type": "slide",
  "name": "Press",
  "settings": [
  {
    "type": "product",
    "id": "press_product",
    "label": "Select Product"
  },
  {
    "type": "text",
    "id": "title_2",
    "label": "Title 2",
    "placeholder": "Link Title",
    "max":10
  },

...

请帮助我解决此问题。 预先感谢。

1 个答案:

答案 0 :(得分:0)

字段没有Invoke-Expression属性。

唯一接受max的字段是范围字段。