SharePoint adds the ability for you to remotely interact with SharePoint sites by using REST. Now, you can interact directly with SharePoint objects by using any technology that supports standard REST capabilities.
You can perform basic create, read, update, and delete (CRUD) operations by using the Representational State Transfer (REST) interface provided by SharePoint.
In this article we will do CRUD operations using REST. For understanding purposes I am going to divide this article into two parts. The first two points I will discuss in this article; the remaining four points I will discuss in another article.
- Create List in Office 365 SharePoint Site
- Creation of Project using SharePoint Hosted App
- Html code for User Interface
- Write Business logic for Insert, Update, Delete, Get data functionalities.
- Deploy the Project
- Test the application.
Create List in Office 365 SharePoint Site
- Login to Office 365 SharePoint and Create List in site.
- In this case, I have created the list name Employee and created three columns EmpName (Default Title column name changed to EmpName), Salary and Address.
Creation of Project using SharePoint Hosted App
Find the below steps to create the project.
- Select SharePoint Add- in template
- Give the Proper Name for the project. In this case I have given project name spRESTCrudOperations.
- Give the SharePoint Site URL and select SharePoint Hosted App option.
- Give Office 365 credentials and click on finish button
- Once you click on Finish button, project will be created.
- In solution explorer, you can find SharePoint hosted app structure. Contains Default pages, Scripts, AppManifest file
- AppManifest file looks like this.
- App.js file looks like this under Scripts
- Default.aspx looks like this under Pages.
In the next article will see remaining points on how to implement. Please look into the next article here.