0
공유 지점 목록보기에서 데이터를 검색하는 다음 스크립트가 있습니다. 데이터를 표시하고 표시 할 수 있지만 json 파일에서 데이터를 다운로드하고 싶습니다. 모든 사용자가이 스크립트가있는 페이지를 방문 할 때마다 JSON 파일을 저장하라는 메시지를 표시합니다.JSON SharePoint에서 사용자에게 다운로드 메시지 표시
여기는 json 형식으로 데이터를 출력하는 내 스크립트 fuction입니다. 난 그냥
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));
});
IE에서는 작동하지만 작동하지 않습니다. URI 문자 제한 때문에 – user388969