SharePoint Online JSON超链接列格式-如果为空



我正在尝试使超链接列出现"NA";如果为空,但如果超链接被输入以显示为可点击的"超链接";查看MSA";。

我可以将后者作为一个可点击的链接来实现,但似乎无法使用if语句使if为空/为空。

{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "a",
"attributes": {
"href": "@currentField",
"target": "_blank"
},
"txtContent": "View MSA"
}

结果

有人给我提供了一个解决方案;

{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "a",
"attributes": {
"href": "@currentField",
"target": "_blank"
},
"txtContent": "=if(@currentField == '', 'NA','View MSA')"
}

相关内容

  • 没有找到相关文章

最新更新