2

我是带有外部内容的 Sharepoint 2013 应用程序的新手。我可以从 SQL 中提取数据并填充到应用程序页面中。但是我尝试添加新数据,收到以下错误消息


来自网页的消息

{"readyState":4,"responseText":"{\"error\":{\"code\":\"-1, Microsoft.SharePoint.Client.InvalidClientQueryException\",\"message\":{\"lang\":\"en-US\",\"value\":\"An entry without a type name was found, but no expected type was specified. To allow entries without type information, the expected type must also be specified when the model is specified.\"}}}","status":400,"statusText":"Bad Request"}

好的

我使用了以下代码

create: function (dname, description) {
    debugger;
    $.ajax({
        url: _spPageContextInfo.webServerRelativeUrl +
                    "/_api/web/lists/getByTitle('tblDomain_SP')/items",
        type: "POST",
        contentType: "application/json;odata=verbose",
        data: JSON.stringify({'DomainName':dname,'Description':description}),
        dataType: "json",
        headers: {
            "accept": "application/json;odata=verbose",
            "X-RequestDigest": $("#__REQUESTDIGEST").val()
        },
        success: function () {
            REST.DomainFormFiller.clear();
        },
        error: function (err) {
            alert(JSON.stringify(err));
        }

    });

}

你能帮我将数据插入到 sql 表中吗?

4

1 回答 1

0

错误:

找到没有类型名称的条目,但未指定预期类型。要允许没有类型信息的条目,还必须在指定模型时指定预期类型

Type由于列表项条目中缺少属性而发生。

列出项目类型

要创建列表项,您需要包含列表项类型。这是首次创建列表时由 SharePoint 自动创建的字符串。两种可能的方法是:

  • 对列表执行读取操作并在返回的元素集中找到类型。在 JSON 格式中,可以在__metadata所有返回的列表项的属性中找到类型。
  • 您可以尝试从列表名称生成值。通常列表项类型遵循约定SP.Data.ListNameListItem(例如列表名称为Test,列表项类型为SP.Data.TestListItem)。然而,这并非总是如此。例如,SharePoint 自动将列表名称的第一个字母大写(例如,列表名称test 列表项类型为SP.Data.TestListItem)。

解决方案

以下代码片段显示了如何根据列表名称生成列表项类型:

function GetItemTypeForListName(name) {
    return"SP.Data." + name.charAt(0).toUpperCase() + name.slice(1) + "ListItem";
}

然后您需要替换该行:

data: JSON.stringify({'DomainName':dname,'Description':description}),

有了这个:

data: JSON.stringify({'DomainName':dname,'Description':description,"__metadata": { "type": GetItemTypeForListName('tblDomain_SP') }}), 

参考

使用 REST API 处理 SharePoint 托管应用程序中的列表项

于 2014-05-08T21:04:08.173 回答