Hi All,
Does anyone know any tutorials or know how to make POST and GET calls using breeze using the .net framework?? I would very much appreciate it if some would show me how to do it. I am new to Angular js and Breeze js
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Guest UserPosted Aug 18, 2014, 2:15 PM
$http.get('url',data, function(){
console.log('success')
});
above example is calling data from URL, eg. http://abc.com/dkdk and data is what you're passing with Get method. And, function() is callback which gets execute after Get is successfull
you can read in detail about other POST, DELETE at angularjs website on http calls.
Breezejs is like LINQ.
Please accept answer if you find it helpful!