我在我的项目中使用angular-fullstack。
$scope.saveArticle = function(article) {
Article.insert({
//post stuff
}, function() {
//get the posted article ID
$location.path('/blog/ARTICLE_ID');
});
如何获得刚刚发布的文章ID?
答案 0 :(得分:2)
尝试以下方法:
$scope.saveArticle = function(article) {
Article.insert({
//post stuff
}, function (response) {
$location.path('/blog/' + response._id);
})
};
这是如何运作的?
_id
将是数据库中ID列的名称。如果您的ID列具有不同的名称(例如ID,tableId等),则相应地进行更改。