PHP的explode()函数的JSON是否等效?

时间:2019-06-25 09:49:23

标签: json sharepoint sharepoint-online

我正在尝试在SharePoint Online中进行一种列格式设置,以获取文件名但不带扩展名。

我编写了一个使用$ FileLeafRef来获取该代码的代码,但它也返回了扩展名(例如:document.docx)

{

“ $ schema”:“ https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json”,

“ elmType”:“ div”,

“ txtContent”:“ [$ FileLeafRef]”

}

我想知道是否有可能像PHP中那样仅返回“。”之前的内容。

谢谢

1 个答案:

答案 0 :(得分:0)

没有OOB函数只能获取文件名。

https://docs.microsoft.com/en-us/sharepoint/dev/declarative-customization/column-formatting

解决方法:

创建工作流程以在文件上传时更新(标题/或自定义文件)值。

enter image description here