If i do
var model = new Model({ id : 'someNewId'});
model.fecth();
I then get a model filed with default value as the model wiht an idea of ‘someNewId’ does not exist on server.
What would be the best way to ensure that a model does exist on the server?
It really depends on your server configuration. Typically a RESTful service would return a HTTP error code 404 to indicate that the resource was not found.