在Backbone的后端,这些属性存储在PostgreSQL数据库中单独的Django模型上时,从Backbone.js有线前端的相关对象显示信息的最佳方法是什么?
我目前正在使用Django,Tastypie,Django-Tastypie,Backbone.js,Backbone-Relational和Handlebars.js模板。我愿意以不同的方式做事,我愿意学习像Riak这样的新技术,如果它是必要的或更有效的。
在前端,我尝试使用标准的Django模板非常简单:在帖子上显示标签列表以及该帖子的作者。
在后端,我有一个Post
模型和Tag
,User
和UserProfile
(作者)模型。 Users
和UserProfiles
是1对1,Post
与UserProfile
有关系,但我要显示的内容存储在User
模型下属性username
。目前,这涉及两个艰苦的查找,以获得每个帖子的作者用户名。 Post
模型:
class Post(models.Model):
author = models.ForeignKey(UserProfile)
topic = models.ForeignKey(Topic)
tags = models.ManyToManyField(Tag)
content = models.TextField()
title = models.CharField(max_length=250)
slug = models.SlugField()
description = models.TextField()
在Coffeescript中我有我的Backbone模型。目前我正在尝试在初始化Post模型时获取相关作者和标记对象。我目前的代码非常草率,我道歉,我的javascript foo仍在开发中!
class User extends Backbone.RelationalModel
class UserProfile extends Backbone.RelationalModel
urlRoot : '/api/v1/profile/?format=json'
class PostTag extends Backbone.RelationalModel
initialize: ->
this.get('tag').on 'change', ( model ) =>
this.get( 'post' ).trigger( 'change:tag', model )
class Tag extends Backbone.RelationalModel
urlRoot: '/api/v1/tag/?format=json'
idAttribute: 'id',
relations: [{
type: Backbone.HasMany,
key: 'post_tags',
relatedModel: PostTag,
reverseRelation: {
key: 'tag',
includeInJSON: 'id',
},
}],
class Post extends Backbone.RelationalModel
idAttribute: 'id',
relations: [{
type: Backbone.HasMany,
key: 'post_tags',
relatedModel: PostTag,
reverseRelation: {
key: 'post',
includeInJSON: 'id',
},
}]
initialize: ->
@.get('tags').forEach(@addTag, @)
@.addAuthor()
@.on 'change:tag', (model) ->
console.log('related tag=%o updated', model)
addAuthor: () ->
profile_id = @.get('author')
if app.UserProfiles.get(profile_id)?
profile = app.UserProfiles.get(profile_id)
user = app.Users.get(profile.user)
@.set('author_name',user.get('username'))
else
profile = new app.UserProfile(profile_id)
app.UserProfiles.add(profile)
profile.fetch(success: (model,response) =>
user_id = profile.get('user')
if app.Users.get(user_id)?
user = app.Users.get(user_id)
user.fetch(success: (model,response) =>
console.log(user.get('username'))
@.set('author_name',user.get('username'))
)
console.log("Existing user"+user_id)
console.log(user.get('username'))
#@.set('author_name',user.get('username'))
else
user = new app.User('resource_uri':user_id)
app.Users.add(user)
console.log("New user"+user_id)
user.fetch(success: (model,response) =>
console.log(user.get('username'))
@.set('author_name',user.get('username'))
)
)
addTag: (tag_id) ->
console.log(tag_id)
if app.Tags.get(tag_id)?
tag = app.Tags.get(tag_id)
console.log("TAG" + tag)
else
console.log("NON EXISTENT")
console.log(tag_id)
tag = new app.Tag({'id':tag_id})
tag.fetch()
app.Tags.add(tag)
post_tag = new app.postTag({
'tag': tag_id,
'post': @.get('resource_uri')
})
@.get('post_tags').add(post_tag)
此代码实际上可以很好地获取和存储相关对象,但它非常混乱,我确信必须有更好的方法。此外,我无法找到一种方法来访问存储的标记名称以显示在我的Handlebars.js
模板中。
答案 0 :(得分:2)
写这篇文章时,我发现了相关问题How do I load sub-models with a foreign key relationship in Backbone.js?
由于我已经写过这个问题,我想我也可以发布它,以防它对任何人都有用。
答案就像向full=True
资源添加tastypie
一样简单。然后我可以摆脱addTags
和addAuthor
函数,因为我不需要保存或更新相关对象,上面的线程中的其余答案对我来说不是必需的。