8

我有一个基本的共享点列表,其中包含人员字段,现在我正在尝试使用 rest api 添加新的列表项并尝试将人员字段设置为我的别名,但它不起作用并将我抛出错误。看起来这是我的用户数据传递方式的问题,但我无法在线找到任何帮助。

你们能帮助以正确的方式拨打这个电话吗,非常感谢任何帮助。

我的代码----------

function runAjax(){   var d  = JSON.stringify({"__metadata":{"type":"SP.Data.RepositoryItem"},"Owners":"-1;#v-mynme@microsoft.com"});
jQuery.ajax({ 
    url: "https://microsoft.sharepoint.com/sites/mysite/docstore/_api/web/lists/GetByTitle('Repository')/items(1580) ",
    type: "POST", 
    headers: { 
        "accept": "application/json;odata=verbose", 
        "content-type": "application/json;odata=verbose", 
        "X-RequestDigest": $("#__REQUESTDIGEST").val(), 
        "X-HTTP-Method": "MERGE", 
        "If-Match": "*" 
    }, 
    data:d, 
    success: function (_a) { 
        console.log(JSON.stringify(_a)); 
    }, 
    error: function (_e) { 
        console.error(JSON.stringify(_e)); 
    } 
});}runAjax(); 

我得到的错误是

Updation fail
{"readyState":4,"responseText":"{\"error\":{\"code\":\"-1, Microsoft.SharePoint.Client.InvalidClientQueryException\",\"message\":{\"lang\":\"en-US\",\"value\":\"A 'PrimitiveValue' node with non-null value was found when trying to read the value of a navigation property; however, a 'StartArray' node, a 'StartObject' node, or a 'PrimitiveValue' node with null value was expected.\"}}}","status":400,"statusText":"Bad Request"} 
4

5 回答 5

12

如何使用 SharePoint REST API 设置用户字段值

假设以下函数用于使用 SharePoint REST 创建列表项:

function createListItem(webUrl,listName,itemProperties) 
{    
    return $.ajax({       
       url: webUrl + "/_api/web/lists/getbytitle('" + listName + "')/items",   
       type: "POST",   
       processData: false,  
       contentType: "application/json;odata=verbose",
       data: JSON.stringify(itemProperties),
       headers: {   
          "Accept": "application/json;odata=verbose",
          "X-RequestDigest": $("#__REQUESTDIGEST").val()
       }  
    });
}

用户字段值的格式:

  • 单值用户字段:'<user field name>' : <user id>
  • 多值用户字段:'<user field name>' : { 'results': [<array of user ids>] }

多用户字段值

该示例演示了如何创建任务项并指定AssignedTo字段:

//Create a Task item
var taskProperties = {
    '__metadata' : { 'type': 'SP.Data.TasksListItem' },
    'Title': 'Order approval',
    'AssignedToId' : { 'results': [10] }
};
createListItem(_spPageContextInfo.webAbsoluteUrl,'Tasks',taskProperties)
.done(function(data)
{
   console.log('Task has been created successfully');
})
.fail(
function(error){
    console.log(JSON.stringify(error));
});

单用户字段值

该示例演示了如何创建任务项并指定AssignedTo字段:

//Create a Task item
var taskProperties = {
    '__metadata' : { 'type': 'SP.Data.TasksListItem' },
    'Title': 'Order approval',
    'AssignedToId' : 10
};
createListItem(_spPageContextInfo.webAbsoluteUrl,'Tasks',taskProperties)
.done(function(data)
{
   console.log('Task has been created successfully');
})
.fail(
function(error){
    console.log(JSON.stringify(error));
});
于 2014-12-22T20:14:49.583 回答
2

您收到的错误消息可能会令人困惑。在这种情况下,虽然 Person/Group 字段被命名为(SharePoint 列表字段的显示或内部名称)“所有者”,但在使用 REST API 更新此字段时,它可能是其他名称。

{"__metadata":{"type":"SP.Data.RepositoryItem"},"Owners":"-1;#vmynme@microsoft.com"}

要找出确切的字段定义,请使用 GET 方法尝试以下 URL 并调查返回的 XML 值。

https://microsoft.sharepoint.com/sites/mysite/docstore/_api/web/lists/GetByTitle('Repository')/items(1580)

XML 可能类似于以下内容

<m:properties> 
...
<d:DateModified m:type="Edm.DateTime">2014-01-07T00:00:00Z</d:DateModified><d:OwnersById m:null="true" />
...
</m:properties>

您很可能会注意到“Owners”字段被命名为其他名称,例如“OwnersId”。您将需要重建您的 ajax 发布数据以使用确切的字段名称并指定用户的Id属性而不是用户的LoginName属性作为发布的值。

于 2014-01-08T21:32:05.053 回答
2

正确的方法应该如下图所示:(我相信它会在某个时候拯救某人)

 var requestApprover = {
                        '__metadata' : { 'type': 'Collection(Edm.Int32)' },
                        'results': [10,20,30]
                    };

请记住,字段名称应在末尾包含 Id,类型应为您要更新的字段类型,其中人员或组(多个)为 Collection(Edm.Int32)。

于 2018-07-05T06:02:50.683 回答
0

您需要使用以下语法为您的用户字段执行 POST 调用:

如果字段名称为“所有者”,则需要"OwnersId": 1在 REST 调用正文中发送(将 ID 附加到列名并传递 UserID 的值)。

如果您需要检查用户列的确切名称,请在浏览器中启动 F12 开发工具,启动网络捕获,然后在浏览器中输入您的 URL。

"https://microsoft.sharepoint.com/sites/mysite/docstore/_api/web/lists/GetByTitle('Repository')/items(1580) "

在响应正文中,您将看到所有列的确切名称(在 REST 中使用)

于 2014-09-18T10:52:48.587 回答
0

您是否尝试过使用用户名的声明编码。这就是我更新此类字段的方式。示例:“i:0#.w|contoso\chris”

于 2014-01-20T07:01:05.750 回答