Sammy.js problem with redirection when using post
Когато искам да post-на ме прехвърля към localhost и губи пътя до index.html
app.router = Sammy(function () {
var selector = '#wrapper';
this.get('#/allBooks', function () {
controller.loadAllBooks(selector);
});
});
app.router.run('#/allBooks');
а това ми е формата
<div id="form">
<label for="author">Title:</label>
<input id="title" type="text"/>
<label for="title">Author:</label>
<input id="author" type="text"/>
<label for="isbn">Isbn:</label>
<input id="isbn" type="text"/>
<button type="submit" id="add">Add</button>
</div>
Като цъкна на бутона Add обекта се записва в базата данни обаче се губи пътя и ми дава 404 not found.
Ако ми помогнете ще съм много благодарен :)