В моем роутере у меня есть
routes: {
"create/:type": "create",
// #create/modeltype
"diagram/:id": "diagram",
// #diagram/193
"": "list"
//
},
, тогда у меня есть маршрут создания
create: function(type) {
console.log("diagram create " + type.toUpperCase());
var newDiagram = new Diagram({
type: type.toUpperCase()
});
newDiagram.save({}, {
success: function(model, response) {
console.log("save diagram success");
window.vnb.routers.workspace.navigate("diagram/" + model.get("id"), true);
},
error: function(model, response) {
console.log("error");
console.log(model);
console.log(response);
}
});
},
Если кто-то создает модель и затем щелкает обратно, он создает другую модель, я хотел быэтого не произойдет.