in below code, when '/services/recipes/'+params.id+'.json' file is create and how this contains the data.
$.Model('recipe',
{
findOne : function(params, success, error ){
return $.ajax({
url: '/services/recipes/'+params.id+'.json',
type: 'get',
dataType : 'json recipe.model'
})
}
}