如何在JSON代码的共享点列表中更改列的类型?
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json"
}
有关列格式的更多详细信息,您可以参考:
https://learn.microsoft.com/en-us/sharepoint/dev/declarative-customization/column-formatting
https://learn.microsoft.com/en-us/sharepoint/dev/declarative-customization/formatting-syntax-reference
SharePoint JSON格式只能用于自定义SharePoint列表和库中的列和视图的显示。
只能将列的显示更改为其他类型。
例如:将字段值转换为超链接(基本(-此示例显示如何将文本字段转换为超链
或
您可以使用setValue
设置列的值。
例如:
{
"elmType": "div",
"txtContent": "[$FieldName]",
"customRowAction":{
"action": "setValue",
"actionInput": {
"FieldInternalName_1": "FieldValue_1",
"FieldInternalName_2": "FieldValue_2",
}
}
}
但是,您不能在列设置中更改实际的列/数据类型。
文档:
- 列格式
- 视图格式