このように取得したオブジェクトがあります$scope.posts = posts.query()
投稿はngResrouceです
angular.module('flapperNews')
.factory('posts', ['$resource', function($resource) {
return $resource('api/posts.json/:id', {id: "@id"})
}]);
取得したオブジェクト
[
0: {
$hasKey: "object:4",
title: "some text",
content: "hello world there",
upvotes: 0
}
1: {
$hasKey: "object:5",
title: "Lorem ipsum is dolor",
content: "hello world there",
upvotes: 0
}
2: {
$hasKey: "object:6",
title: "When there is nothing to share",
content: "hello world there",
upvotes: 0
}
]
この取得したオブジェクトから「タイトル」だけを取得して、AngularJS Formly 検証に使用するにはどうすればよいですか? (新しい投稿のタイトルが一意かどうかを検証します)