javascript 带有REST API调用的Html表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 带有REST API调用的Html表相关的知识,希望对你有一定的参考价值。

    var customerNames = "/_api/Web/Lists/GetByTitle('Customer-Database-V1')/Items?"+
                   "$select=ID,Title,Abbreviation";


    $.ajax(
    {

    url: _spPageContextInfo.webAbsoluteUrl + customerNames,
    type: "GET",
    headers: {
    "accept": "application/json;odata=verbose",
    },
    success: function (data) {
    readAllSuccess(data);
    },
    error: function (err) {
    alert(JSON.stringify(err));
    }
    }
    );
    },

    readAllSuccess = function (data) {
    var html = [];
    html.push("<table><thead><tr><th>ID</th><th>Customer Name</th>" +
    "<th>Customer Abbreviation</th><th>POD URL</th></tr></thead>");

    var results = data.d.results;
    console.log(data.d.results);

    for(var i=0; i<results.length; i++) {
    html.push("<tr><td>");
    html.push(results[i].ID);
    html.push("</td><td>");
    html.push(results[i].Title);
    html.push("</td><td>");
    html.push(results[i].Abbreviation);
    html.push("</td><td>");
    html.push(results[i].POD_x002d_URL);
    html.push("</td></tr>");
    }
    html.push("</table>");
    $('#displayDiv').html(html.join(''));

以上是关于javascript 带有REST API调用的Html表的主要内容,如果未能解决你的问题,请参考以下文章

Rest API 调用返回带有 LocalDate 的错误

带有 Javascript 的 ASP.NET Core DateTime Rest API 转换为 UTC 而不是 java

Alamofire - 带有自定义标头的 Rest API 调用

javascript 删除项REST API调用SharePoint 2013

调用 REST API、JavaScript 时的 CORS 策略 [重复]

如何在Javascript中进行rest API调用[重复]