Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
202 views
in Technique[技术] by (71.8m points)

How to get number of clicks clicked on an list item in a list in Sharepoint 2013 using REST API

I am new to Sharepoint and using 2013 classic version. I have created a website and in it, it has list with items. So, I need to trace the number of clicks of each item individually. My code is not working for tracing the number of clicks as the count gets stopped with 1 and doesn't increment then for individual item. But it counts overall clicks of all items in that list. I'm stuck with this for two weeks. Please help me and Many many thanks in advance.

function Getprevcount(linkname) {

    var resturl = _spPageContextInfo.webAbsoluteUrl + "/_api/web/lists/getbytitle('abc')/items?$top=1000";

    $.ajax({

        url: resturl,
        method: "GET",
        headers: { "Accept": "application/json; odata=verbose" },

        success: function (data) {
           var lnt = data.d.results.length;
            for (var i = 0; i < lnt; i++) {
                if (data.d.results[i].Title == linkname) {
                    prevcount = data.d.results[i].Count;
                }
            }
        },
        error: function (data) {
        console.log(data.responseJSON.error);
        }
    });
}

   function Updatecount(updatlink) {

    var resturl = _spPageContextInfo.webAbsoluteUrl + "/_api/web/lists/getbytitle('abc')/items?$select=Title&$filter=Name";
    //alert(resturl);
    prevcount = prevcount + 1;
    //alert(prevcount);

    $.ajax({

        url: resturl,
        method: "POST",
        headers: {
            "accept": "application/json;odata=verbose",
            "X-RequestDigest": $("#__REQUESTDIGEST").val(),
            "content-Type": "application/json;odata=verbose",
            "IF-MATCH": "*",
            "X-HTTPS-Method": "MERGE"
        },
        data: "{__metadata:{'type':'SP.Data.TestcounterListItem'},Count:'1'}",

        async: false, success: function (data) {
            alert("I'm in Update Count Section");
            console.log(prevcount);
        },
        error: function (data) {
        console.log(data.responseJSON.error);
        }
    });
}
question from:https://stackoverflow.com/questions/65953105/how-to-get-number-of-clicks-clicked-on-an-list-item-in-a-list-in-sharepoint-2013

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Look in the update function the line below it always update with the number you can use prevcount there to update the number.

 data: "{__metadata:{'type':'SP.Data.TestcounterListItem'},Count:'1'}",

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...