Я думаю, вы можете сделать это тем же ajax, где срабатывает success
. Код ниже может немного помочь:
$(".submit").click(function () {
$.ajax({
url: 'url where your view waits',
data: {
'post': "your data on post",
},
type: 'post',
cache: false,
success: function (data) {
// here you can do DOM manipulation add new object to the list.
// You can also get data from backend in json format an then
// add it to your DOM.
},
});
});
Надеюсь, это поможет.