0

我需要你的帮助,我非常感激。

假设我有一个包含不同列表元素的 SharePoint 列表。每个列表元素都有一个特定的 ID。

例如,我正在尝试将一列格式化为文本字段。我正在尝试编写一个 .json 代码,将列表元素的 ID 值附加到链接

我确实使用以下代码尝试过

{ "$schema": "http://columnformatting.sharepointpnp.com/columnFormattingSchema.json", "debugMode": true, "elmType": "div", "children": [ { "elmType": "a", "attributes": { "target": "_blank", "href": { "operator": "+", "operands": [ "http://anywebsite?ID='", "[$ID]" ] } }, "txtContent": "Some text" } ] }

但是当我在 SharePoint 列中单击确定时,它给了我一个错误:

Failure: Cannot read property 'valueOf' of null

现在我该怎么做才能将 ID 附加到不同列中的链接?

我感谢您的帮助。

4

1 回答 1

0

我测试了超链接文件,你的 json 中有一个 ' 不需要。

{ "$schema": "http://columnformatting.sharepointpnp.com/columnFormattingSchema.json", "debugMode": true, "elmType": "div", "children": [ { "elmType": "a", "attributes": { "target": "_blank", "href": { "operator": "+", "operands": [ "http://anywebsite?ID=", "[$ID]" ] } }, "txtContent": "Some text" } ] }

在此处输入图像描述

于 2019-07-02T01:10:56.357 回答