1
vote
0answers
22 views

JS Framework able to generate forms based on (django) rest api OPITONS

Django REST Framework when using browsable API after clicking on OPTIONS button shows beautiful definitons of fields and allowed actions of/on resource, example for some user resource below: HTTP ...
0
votes
2answers
48 views

AngularJS $resource | don't update view until promise resolved

I am wanting to use $resource to make a RESTful update on our server but the view get's updated as soon as the user clicks when I would like it to not update until the server sends a response. I am ...
0
votes
0answers
77 views

Spring MVC and Web Application separated

I have been Googling a lot lately, but I find myself coming up short on answers. I have a complete Spring MVC application secured by Spring Security and with services exposing logic to controllers ...
4
votes
3answers
364 views

Are server-side MVC frameworks still relevant in single-page applications? [closed]

In a single-page application that uses Angular, it seems like most of the things are handled on the client-side. The client seems to just make restful calls to the server. Following this concept, it ...
1
vote
0answers
2k views

How angularjs resource post data

Im working with a simple service, posting some data. At the moment I have a service like this: sitekServices.factory('Books', ['$resource', function($resource){ return ...
10
votes
2answers
6k views

Laravel 4 as RESTful backend for AngularJS

I am trying to build a web application which should use Laravel as a RESTful backend API and AngularJS on client side. I read all the other post on Stackoverflow about the issue, but no one is ...
0
votes
1answer
379 views

Nesting resources in AngularJS

I'm creating the "Discussions" module of my website with AngularJS. I've actually two types of resources for client<->server communication : Discussion $resource (used to retrieve ...
3
votes
1answer
1k views

mean.io vs node-restify and nginx. Which framework to use for json webservice serving an angularjs app

Story so far -> We have built an angularjs app which consists of a single html file and few lightweight js files. Entire dom is controlled by angular . However we need to upload audio files and save ...
6
votes
3answers
5k views

Razor templates, views and angular.js

The context: We are developing a public website (not an intranet application) using mvc4 with razor, and we weren't very familiar with client script, so we started with what we new a bit: jquery. But ...
2
votes
2answers
600 views

Consuming hateoas restful webservice with javascript (framework)

Is it possible to consume a hateoas type of restful webservice via (a) javascript (framework - e.g. angularjs)? I imagine that the client needs to implement quite a lot of logic to reach the actual ...
0
votes
0answers
48 views

Should hierarchical collections in an API reference each other bidirectionally?

I'm setting up an AngularJS app, at the moment using Deployd for the backend RESTful API. I'm trying to figure out the best practice for structuring the data in the API collections. Right now I have ...
3
votes
3answers
4k views

Angularjs - Spring MVC integration

I am trying to integrate AngularJS with Spring MVC; but I am not able to post parameters to spring controller as RequestBody. Can some one help me to achieve the same. Below is brief flow of my ...