1

我正在创建一个 Liquid 模板,我需要验证我的 JSON 有效负载中的字符串属性是否为数字(仅包含数字)。

我已尝试实施此处建议的提示

{% assign test = "A string" | plus: 0 %}
{{ test }}
{% assign test_d = "123456" | plus: 0 %}
{{ test_d }}

{{ test }} 将打印 1 而 {{ test_d }} 将打印 123456。所以你可以做一个检查:

{% if test_d != 0 %}
    {{ "I'm a Int!"}}
{% else %}
    {{ "I'm a String!"}}
{% endif %}

这里。

使用 assign 时,这些选项中的任何一个都应该给你一个数字:

{% assign var1 = var1 | plus: 0 %}
{% assign var2 = var2 | times: 1 %}

但是,它们在DotLiquid实现中的工作方式似乎不同。

这是我使用这些技巧创建的模板。

{
  {% assign numValue1 = content.myDoc.myProperty | Plus: 0 %}
  {% assign numValue2 = content.myDoc.myProperty | Times: 1 %}
  {% assign numValue3 = content.myDoc.myProperty | Times: 2 %}

  {% if numValue1 != 0 %}
    "validation1": true,
  {% else %}
    "validation1": false,
  {% endif %}

  "numValue1": "{{numValue1}}",
  "numValue2": "{{numValue2}}",
  "numValue3": "{{numValue3}}"

}

但是,过滤器Plus: 0将 char '0' 连接到字符串,而不是像 Ruby 实现中描述的那样表现。并Times重复该字符串,而不是按照建议返回一个数字。

这是我的财产是时的输出12345

{
    "validation1": true,
    "numValue1": "123450",
    "numValue2": "12345",
    "numValue3": "1234512345"
} 

这是我的财产是时的输出ABC123

{
    "validation1": true,
    "numValue1": "ABC1230",
    "numValue2": "ABC123",
    "numValue3": "ABC123ABC123"
}

我知道 DotLiquid 的实现与 Ruby 的实现并不完全相同。我检查了 DotLiquid 的源代码,这些过滤器是按照它们在我的测试中的行为进行编码的。

有什么建议么?

4

1 回答 1

0

在浏览了 DotLiquid 代码并检查了所有过滤器之后,我想出了这个解决方案。它不是很优雅,但它可以完成工作:)

{
  {% assign nonNumericCharsInMyProperty  = content.myDoc.myProperty | Remove: "0" | Remove: "1" | Remove: "2" | Remove: "3" | Remove: "4" | Remove: "5" | Remove: "6" | Remove: "7" | Remove: "8" | Remove: "9" %}

  {%- if content.myDoc.myProperty == '' -%}
    "isValid": false,
    "message": "Invalid Message. myProperty cannot be empty."
  {%- elseif nonNumericCharsInCardNumber != '' -%}
    "isValid": false,
    "message": "Invalid Message. myProperty must be numeric."
  {%- else -%}
    "isValid": true,
    "message": ""
  {%- endif -%}
}
于 2018-01-18T02:03:29.943 回答