I am trying to keep my controllers nice a RESTful.One thing I keep running into is the need for a button or link on the site to trigger a specific event on a model.For example:
In REST - revertable DELETE a nice introduction on howto model state changes in REST was given. Basically, if you have a resource with a field status, you just put a new version of that resource with
I am working on a site which will have two levels the URL reaches My objective is to have clean URL\'s like this...
I\'ve got a signup HTM开发者_如何学运维L form with a username field that I want to check against registered usernames to ensure uniqueness. I considered making a GET request to api/users/:username, if
I am new to Ruby On Rails and need some help impleme开发者_如何学运维nting REST protocol. Whenever you do a POST on REST you get a URL back e.g. http://my-site.com/id/1
In short, my application needs to pull images from a MySQL db. Since the images pulled will depend on the users location I can\'t just hardcode image file paths.
I\'m new to REST on Java and I would like to create \"simple\" REST services that queries a database and returns开发者_运维问答 some JSON info.
I\'m trying to do the following: show a buttonless UIAlertView showing a \"开发者_开发技巧Loading\" message
I am connecting to Salesforce.com as a data-store and accessing their REST API\'s. Currently, to do a query,have to use SOQL, which is a query language.
I am learning now REST and Spring and I have to do some starting project, to get used with the tech开发者_StackOverflownologies. So, I made a RESTful application after some tutorials and I have some p