0
我在我的項目上使用angular-fullstack。Angular-fullstack獲得發佈文章ID
$scope.saveArticle = function(article) {
Article.insert({
//post stuff
}, function() {
//get the posted article ID
$location.path('/blog/ARTICLE_ID');
});
如何獲取剛發佈的文章ID?
難道你不能使用'文章'? – Satpal
刪除了jquery標籤,因爲jquery在這裏沒有關係 – bipen
@Satpal謝謝! – Hiero