我有一個提交使用jQuery後這樣的形式灰燼動作,灰燼創成到網址無法運作
submit : function(){ //submitting new story
this.set('onsubmit' , true);
var self = this;
$.post("/api/post", { some post data })
.done(function(data) {
self.transitionTo('post' + data);
});
}
的網址是這樣的,域example.com。郵政位於example.com/api/post。發佈後,用戶必須重定向到example.com/post/3432232(某些值由發佈數據返回)。
但是在發佈此過渡到「example.com/api/post/5000203」而不是example.com/post/234234234之後。
哪個不存在,並給出了404。我怎樣才能讓用戶回到example.com/post/234234234使用轉換到功能在燼?
編輯 - 路線如下
App.Router.map(function() {
this.resource('index', {path : '/'} , function() {
this.resource('p', function(){
this.resource('post', { path: ':post_id' });
});
});
});
感謝