Tagged Questions
0
votes
1answer
107 views
Building A Backbone.js User Model, Collection and View For A RESTful JSON API
So I just finished making a fully RESTful JSON API for a User in node. When you visit http://localhost:8080/user/create you get what you would normally expect- a new User which is then stored in a ...
0
votes
0answers
58 views
Why XMLhttprequest function cannot make post when using RestfulApi?
My html code is below.
<html>
<head>
<title>To-Do</title>
<meta name="description" content="To-Do" charset="utf-8"></meta>
<link href="css/bootstrap.css" ...
6
votes
1answer
457 views
dojo.store.Observable, JSON REST and queryEngine
Does anybody know how to use the JsonRest store in dojo witn an Observable weapper, like the one in dojo.store.Observable?
What do I need, server side, to implement the store and make it work as an ...
2
votes
1answer
330 views
Using javascript to call an expressjs restful webservice => result always empty respons
Purpose: 1) Create an website witch runs on a NodeJs webserver.
(expressjs, stylus, jade) + NodeJS
2) Create an restful webservice on an NodeJs webserver
(expressjs) + NodeJS
...
2
votes
1answer
1k views
How do you pass authorization data with an HTTP GET request in a RESTful system?
This is probably the MOST basic question and for some reason but I'm a bit dumbfounded. I am designing a restful service which has multiple pages. Clicking on a link by default fires an HTTP GET
Now ...