提示用户在JSON SharePoint列表项中下载

时间:2017-02-15 23:11:58

标签: jquery json sharepoint sharepoint-2013 csom

我有以下脚本从sharepoint列表视图中检索数据。 我可以获取数据并显示但我想在json文件中下载数据。 每当任何用户点击具有此脚本的页面时,它都会提示他们保存JSON文件。

这是我的脚本功能,以json格式输出数据。我只需要从该数据中创建一个json文件并将其下载为文件

     getListViewItems('https://mysite','mylist','myview').done(function(data)
     {
      console.log(JSON.stringify(data));
      // data is the json result i want and i can print this to
      // console or display in the page but i want to add this to 
      // a json file and make it downloadable.  
     })
   .fail(
    function(error){
    console.log(JSON.stringify(error));
   });

1 个答案:

答案 0 :(得分:0)

这个链接可能对您有所帮助 Download JSON object as a file from browser (见接受的答案)

正如你所说,你已经有了一个json文件,这个链接会给你一个提示,告诉你如何点击动态生成的链接并下载文件。

由于