Tech
Forums
Jobs
Books
Events
Interviews
Live
More
Learn
Training
Career
Members
Videos
News
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
How To Upload Document In Document Library Using JSOM In Sharepoint 2013
WhatsApp
Sushant Kesari
7y
60.1
k
0
0
25
Blog
Steps
Create SharePoint page in pages library.
Add Content Editor Web part in SharePoint page.
Create a .txt file and save the code given below in txt file. Ex- "fileUpload.txt"
Upload fileUpload.txt in Site Assets library.
Refer the script file from CEWP and save the page.
fileUpload.txt - Code
<html>
<head>
<script language=
"javascript"
type=
"text/javascript"
src=
"//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"
></script>
<script language=
"javascript"
type=
"text/javascript"
>
var
fileInput;
$(document)
.ready(
function
() {
fileInput = $(
"#getFile"
);
SP.SOD.executeFunc(
'sp.js'
,
'SP.ClientContext'
, registerClick);
});
function
registerClick() {
//Register File Upload Click Event
$(
"#addFileButton"
).click(readFile);
}
var
arrayBuffer;
function
readFile() {
//Get File Input Control and read th file name
var
element = document.getElementById(
"getFile"
);
var
file = element.files[0];
var
parts = element.value.split(
"\\"
);
var
fileName = parts[parts.length - 1];
//Read File contents using file reader
var
reader =
new
FileReader();
reader.onload =
function
(e) {
uploadFile(e.target.result, fileName);
}
reader.onerror =
function
(e) {
alert(e.target.error);
}
reader.readAsArrayBuffer(file);
}
var
attachmentFiles;
function
uploadFile(arrayBuffer, fileName) {
//Get Client Context,Web and List object.
var
clientContext =
new
SP.ClientContext();
var
oWeb = clientContext.get_web();
var
oList = oWeb.get_lists().getByTitle(
'Documents'
);
//Convert the file contents into base64 data
var
bytes =
new
Uint8Array(arrayBuffer);
var
i, length, out =
''
;
for
(i = 0, length = bytes.length; i < length; i += 1) {
out += String.fromCharCode(bytes[i]);
}
var
base64 = btoa(out);
//Create FileCreationInformation object using the read file data
var
createInfo =
new
SP.FileCreationInformation();
createInfo.set_content(base64);
createInfo.set_url(fileName);
//Add the file to the library
var
uploadedDocument = oList.get_rootFolder().get_files().add(createInfo)
//Load client context and execcute the batch
clientContext.load(uploadedDocument);
clientContext.executeQueryAsync(QuerySuccess, QueryFailure);
}
function
QuerySuccess() {
console.log(
'File Uploaded Successfully.'
);
alert(
"File Uploaded Successfully."
).
}
function
QueryFailure(sender, args) {
console.log(
'Request failed with error message - '
+ args.get_message() +
' . Stack Trace - '
+ args.get_stackTrace());
alert(
"Request failed with error message - "
+ args.get_message() +
" . Stack Trace - "
+ args.get_stackTrace());
}
</script>
</head>
<body>
<input id=
"getFile"
type=
"file"
/><br /> <input id=
"addFileButton"
type=
"button"
value=
"Upload"
/>
</body>
<html>
Now, refresh the page.
Select the file and click upload.
Now, go to Document library and verify your uploaded document.
JSOM
Sharepoint 2013
Up Next
Share documents with other users in SharePoint 2013 document library
Ebook Download
View all
Getting Started with SharePoint Framework Development using TypeScript, PnP JS, and React JS
Read by 4.9k people
Download Now!
Learn
View all
Membership not found