我有两个对象,事件&评论:
{
"name": "events",
"fields": {
"name": {
"type": "string"
},
"date": {
"type": "datetime"
},
"time": {
"type": "datetime"
},
"info": {
"type": "text"
},
"users": {
"collection": "users_events",
"via": "event"
},
"eventCommentsId": {
"collection": "comments",
"via": "eventId"
},
}
},
{
"name": "comments",
"fields": {
"content": {
"type": "text"
},
"owner": {
"object": "users"
},
"eventId": {
"object": "events"
},
"date": {
"type": "datetime"
}
}
}
每个活动都应有自己独特的评论集。所以,它是一对多的关系。
现在,我可以获取所有评论,而不仅仅是与每个事件对应的评论。我的想法是我需要在每个评论中包含事件的ID。但是,我不完全确定如何做到这一点。
如果有人能帮我解决这个问题,那就太棒了!
我正在使用Ionic / AngularJS构建应用程序,并且我使用Backand存储我的数据。
提前致谢!
.controller('EventDetailCtrl', ['$scope', '$stateParams', '$ionicSideMenuDelegate', 'EventService', 'CommentService',function($scope, $stateParams, $ionicSideMenuDelegate, EventService, CommentService) {
$scope.openMenu = function () {
$ionicSideMenuDelegate.toggleLeft();
};
var id = $stateParams.id;
EventService.getEvent(id).then(function(response){
$scope.event = response.data;
});
$scope.comments = [];
$scope.input = {};
function getAllComments() {
CommentService.getComments()
.then(function (result) {
$scope.comments = result.data.data;
});
}
$scope.addComment = function() {
CommentService.addComment($scope.input)
.then(function(result) {
$scope.input = {};
getAllComments();
});
}
$scope.deleteComment = function(id) {
CommentService.deleteComment(id)
.then(function (result) {
getAllComments();
});
}
getAllComments();
}])
.service('CommentService', function ($http, Backand) {
var baseUrl = '/1/objects/';
var objectName = 'comments/';
function getUrl() {
return Backand.getApiUrl() + baseUrl + objectName;
}
function getUrlForId(id) {
return getUrl() + id;
}
getComments = function () {
return $http.get(getUrl());
};
addComment = function(event) {
return $http.post(getUrl(), event);
}
deleteComment = function (id) {
return $http.delete(getUrlForId(id));
};
getComment = function (id) {
return $http.get(getUrlForId(id));
};
return {
getComments: getComments,
addComment: addComment,
deleteComment: deleteComment,
getComment: getComment
}
})
答案 0 :(得分:2)
最好从后端移动获取特定事件的所有注释的逻辑,而不是从服务器获取所有内容并在前端进行过滤。 您可以拨打电话,如:
http://mysite/getComments?eventId=2533213
在您的评论模式(对于数据库)中,您可以将一个字段设为 eventId 。然后,您可以从数据库中获取在调用中提供事件ID的所有注释,并返回到您的应用程序作为响应。
在前端你可以这样做:
控制器:
function getCommentsById(event) {
CommentService.getCommentsById(event)
.then(function (result) {
$scope.comments = result.data.data;
});
}
服务:
getCommentsById = function (event) {
return $http.get(getUrl() + "?eventId=" + event.id); //supposing you have event.id
};
答案 1 :(得分:2)
您还可以在Backand的信息中心中创建一个查询,并将其命名为GetCommentsByEventId
,并使用api端点Backand.getApiUrl() + '/1/query/data/GetCommentsByEventId'
您可以传递ID,然后您就会收到该事件的评论。 (见下面的截图)
在使用SQL SELECT * FROM comments WHERE event='{{eventId}}'
的查询中,您将获得该事件ID的注释。
或者您可以在API网址中使用过滤器,例如Backand.getApiUrl() + /1/comments?filter={"fieldName":"event","operator":"in", "value": "33"}
(此处不是为了便于编码而编写的网址,33是eventId)
演示文稿的我的数据库模型如下截图所示:
数据库模型json如下:
[
{
"name": "users",
"fields": {
"email": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"user": {
"collection": "comments",
"via": "user"
}
}
},
{
"name": "events",
"fields": {
"title": {
"type": "string"
},
"created_at": {
"type": "datetime"
},
"eventId": {
"collection": "comments",
"via": "event"
}
}
},
{
"name": "comments",
"fields": {
"event": {
"object": "events"
},
"user": {
"object": "users"
},
"text": {
"type": "string"
}
}
}
]
在数据库模型中,我只会将eventId
模型中的events
重命名为
eventCommentsId
要明确表示它是对评论的引用。
请查看下面的演示代码(不在此处,Backand脚本中的不安全操作)或此jsfiddle中的工作演示。
角度代码可以稍微重构但是有效。如果其他内容不正确,请告诉我,因为这是我使用Backand的第一个例子。
此外,演示中没有用户登录,这就是为什么所有内容都会添加userId = 1。
angular.module('demoApp', ['ionic', 'backand'])
//Update Angular configuration section
.config(function(BackandProvider) {
BackandProvider.setAppName('myfirstapp123');
//BackandProvider.setSignUpToken('-token-');
BackandProvider.setAnonymousToken('9f99054f-3205-426b-afc7-158d7ac3500f');
})
.controller('mainController', MainController)
.service('dataService', dataService)
.factory('commentsFactory', Comments);
function MainController($scope, $http, Backand, dataService, commentsFactory) {
var vm = this,
comment = commentsFactory;
vm.currentUserId = 1; //<<<< should be the current user later (no login yet)
vm.displayedComments = {};
dataService.getList('events').then(function(response) {
vm.events = response.data;
}); //eventsFactory;
vm.addEvent = function(newTitle) {
if (!newTitle) return; // don't add empty events
// this should be in a factory later
var newDate = new Date();
return $http({
method: 'POST',
url: Backand.getApiUrl() + '/1/objects/events?returnObject=true',
data: {
title: newTitle,
created_at: newDate
}
}).then(function(response) {
//console.log(response, vm.events);
vm.events.data.push(response.data);
});
}
vm.addComment = function(userId, event, text) {
//event.comments.push(
if (!text) return;
comment.create(userId, event.id, text).then(function(response) {
event.comments.push(response.data);
//console.log(response);
});
}
vm.getComments = commentsFactory.getComments;
vm.showComment = function(event) {
//console.log(event);
commentsFactory.getComments(event.id).then(function(response) {
vm.displayedComments[event.id] = !vm.displayedComments[event.id];
event.comments = response.data;
});
};
vm.remove = function(event, commentId) {
console.log('removing', event, commentId);
commentsFactory.delete(commentId).then(function(response){
//console.log('removed', response, event);
// next update collection in angular
event.comments = event.comments.filter(function(comment) {
return comment.id !== commentId; // remove comment
});
});
}
}
function dataService($http, Backand) {
var vm = this;
//get the object name and optional parameters
vm.getList = function(name, sort, filter) {
return $http({
method: 'GET',
url: Backand.getApiUrl() + '/1/objects/' + name,
params: {
pageSize: 20,
pageNumber: 1,
filter: filter || '',
sort: sort || ''
}
});
}
}
function Comments($http, Backand) {
return {
create: function(user, event, text) {
return $http({
method: 'POST',
url: Backand.getApiUrl() + '/1/objects/comments?returnObject=true',
data: {
event: event,
user: user,
text: text
}
});
},
delete: function(commentId) {
return $http({
method: 'DELETE',
url: Backand.getApiUrl() + '/1/objects/comments/' + commentId
});
},
getComments: function(id) {
return $http({
method: 'GET',
url: Backand.getApiUrl() + '/1/query/data/GetCommentsByEventId',
params: {
parameters: {
eventId: id
}
}
});
}
}
}
&#13;
<link href="https://cdnjs.cloudflare.com/ajax/libs/ionic/1.2.4/css/ionic.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ionic/1.2.4/js/ionic.bundle.js"></script>
<script src="https://cdn.backand.net/backand/dist/1.8.2/backand.min.js"></script>
<div ng-app="demoApp" ng-controller="mainController as mainCtrl">
<ion-header-bar align-title="center" class="bar-dark">
<h1 class="title">EventsApp</h1>
</ion-header-bar>
<ion-content>
<!--<pre>{{mainCtrl.events | json : 2}}</pre-->
<!--<pre>{{mainCtrl.displayedComments|json:2}}</pre>-->
<ion-list>
<ion-item>
<form ng-submit="mainCtrl.addEvent(mainCtrl.newEventTitle); mainCtrl.newEventTitle = '';">
<input type="text" ng-model="mainCtrl.newEventTitle" placeholder="event title..."/>
<button class="item item-icon-left">
<i class="icon ion-plus-round"></i>
add event
</button>
</form>
</ion-item>
<ion-item ng-if="mainCtrl.events.data.length === 0">
<h1>
There are no events yet.
</h1>
</ion-item>
<ion-item ng-repeat="event in mainCtrl.events.data | orderBy: '-created_at'" class="item item-button-right">
<h1>
{{event.title}}
</h1>
<button ng-click="mainCtrl.showComment(event)" class="button icon-left ion-ios-chatbubble" title="{{mainCtrl.displayedComments[event.id]? 'hide comments': 'show comments'}}">
</button>
<div ng-show="mainCtrl.displayedComments[event.id]" class="list">
<form ng-submit="mainCtrl.addComment(mainCtrl.currentUserId, event, commentText)">
<label class="item item-input">
<span class="input-label">Username</span>
<input type="text" disabled ng-model="mainCtrl.currentUserId">
</label>
<label class="item item-input">
<span class="input-label">Comment</span>
<input type="text" ng-model="commentText">
</label>
<button class="button button-positive">
leave comment
</button>
</form>
<ion-list>
<ion-item ng-if="event.comments.length === 0">
<h2>
No comment yet. Be the first and leave a comment.
</h2>
</ion-item>
<ion-item ng-repeat="comment in event.comments">
<div class="item item-button-right">
user {{comment.user}} wrote {{comment.text}}
<button ng-click="mainCtrl.remove(event, comment.id)" class="button button-positive">
<i class="icon ion-ios-trash"></i>
</button>
</div>
</ion-item>
</ion-list>
</div>
</ion-item>
</ion-list>
</ion-content>
</div>
&#13;
答案 2 :(得分:2)
您还可以使用?deep = true查询参数,该参数在一对多的情况下显示所有集合。
在你的例子/ 1 / objects / event / 1中?deep = true将返回id为1的事件的所有注释。
var id = $stateParams.id;
var useDeep = true;
EventService.getEvent(id, useDeep).then(function(response){
$scope.event = response.data;
$scope.comments = response.data.comments;
});