在"?",,,,在JSON中,"; ">是什么意思?? 下面的示例代码(参见第5行):
{
"$schema" "https://developer.microsoft.com/json-schemas/sp/v2/row-formatting.schema.json"
"additionalRowClass";
{
";operator";;
[
{
" ==";
";"%",
"operands":
(
"@rowIndex"
2
]
},
0
},
"sp-css-backgroundColor-noFill",
{
"operator":",
"operands":
(
{
"operator"= =",
"operands":
(
{
"operator"%",
"operands":
(
"@rowIndex"
2
]
},
1
},
"sp-css-backgroundColor-BgLightGray30",
,">
]
}
]
}
}
你问的不是JSON问题,我们需要看到解析和使用JSON中的值的代码才能回答":"值用于。
JSON本身没有任何运算符,所以使用JSON的代码使用它的值作为运算符,因为它是一个"key"; "value"对(字典)
的例子:JSON文件:
{
<key>:<value>
}
使用该文件的代码解析该文件,因此您可以这样说,例如:
var parsed_json = <Parsed json file>
var value = ""
if (parsed_json[<key>] == "Example_value") {
value = parsed_json[<key]
}
在这个可能不好的例子中,您检查特定键是否具有值"Example_value"并将其设置为该值
在你的例子中,值是":"这取决于它在代码中的使用位置它可以表示任何东西所以我们需要看到这些代码来帮助你实现你的要求
:
在SharePoint JSON格式类似于条件(三元)操作符在JavaScript.
:
操作符在SharePoint JSON格式中使用,当你使用抽象树语法(AST) -这是必须的,而在SharePoint 2019中使用JSON。
文件:
- SharePoint JSON格式-语法-引用
- 条件(三元)操作符- JavaScript