Below is the simple task I want to do :
1) Create a simple form – employee details form and use SharePoint list to save the data.
2) You have to plete CRUD operations for that employee details by using angularjs and rest services. If you will use SharePoint list then you don’t need to write service code separately, REST API is already available for this.
So what I need to do is to municate SharePoint
list with AngularJs
and REST
. I am new to AngularJs
, Sharepoint
and REST
. Tried to search on google but could not find same.
Below is the simple task I want to do :
1) Create a simple form – employee details form and use SharePoint list to save the data.
2) You have to plete CRUD operations for that employee details by using angularjs and rest services. If you will use SharePoint list then you don’t need to write service code separately, REST API is already available for this.
So what I need to do is to municate SharePoint
list with AngularJs
and REST
. I am new to AngularJs
, Sharepoint
and REST
. Tried to search on google but could not find same.
- 3 What have you tried yet ? It seems to me like a scholar exercise that you didn't solved on your own... – cubitouch Commented Jan 27, 2014 at 11:52
- I tried with many tutorials, videos and articles but because i am new to all 3 i.e. Angular, Rest and SharePoint so could not able to collect it in working single application. – Girish Commented Jan 27, 2014 at 11:56
- I Learned decent amount of angular js from codeproject./Articles/637430/Angular-js-example-application, angularjs, viralpatel/blogs/angularjs-controller-tutorial etc. – Girish Commented Jan 27, 2014 at 12:03
- What version of SharePoint are you using? – Dalorzo Commented Jan 27, 2014 at 12:34
2 Answers
Reset to default 5I found a nice and easy article by Saikiran Sheshagiri, explaining how to get List Data in SharePoint 2013 using Rest api and AngularJS .
Found another great article by Jeremy Thake, explaining how to use REST API to Host Web with AngularJS Services.
Try to take the problem separatly in that order :
Create an interface with AngularJS, which will do what you need for the CRUD UI part.
Create a SharePoint list as suggested, in order to save you entries.
Plug the AngularJS routes to the SharePoint REST webservice in order to junction the UI with the data storage.
See https://www.twilio./blog/2013/12/votr-part-5-angularjs-crud-restful-apis.html for first and last point, and http://msdn.microsoft./en-us/magazine/dn198245.aspx for the second.