jupiterjs / jquerymx

jQuery MVC Extensions. jQuery extensions that makes all the annoying stuff easier.
http://javascriptmvc.com
553 stars 374 forks source link

support for templated static fixtures #126

Open arjunballa opened 12 years ago

arjunballa commented 12 years ago

// Now Templated urls can also be used with templated static fixtures.

$.fixture({ type : "GET", url : "/todos/{id}", }, "//jquery/dom/fixture/fixtures/test.{id}.json");

// below ajax call looks for jquery/dom/fixture/fixtures/test.911.json fixture $.get("/todo/911", function(data) { // data is json object constructed from //jquery/dom/fixture/fixtures/test.911.json fixture }, "json");