Frage

I have ABC SharePoint hosted app and I have a ABClist inside ABC app, there is XYZ custom page available in host web.

Now I want to save query string URL to ABClist app list from host web's XYZ custom page (ootb page).

War es hilfreich?

Lösung

You need to construct post URL as shown below:

$.ajax({
        url: _spPageContextInfo.webAbsoluteUrl + "/" + "App web name" +  "/_api/web/lists/GetByTitle('" + "App web list name" + "')/items",
        type: "POST",
        headers: {
            "accept": "application/json;odata=verbose",
            "X-RequestDigest": $("#__REQUESTDIGEST").val(),
            "content-Type": "application/json;odata=verbose"
        },
        data: JSON.stringify(data),
        success: function (data) {
            console.log(data);
        },
        error: function (error) {
            alert(JSON.stringify(error));
        }
    });
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit sharepoint.stackexchange
scroll top