javascript – Firebase:加入表格

假设数据看起来像这样
post: {
  authorId: '123AA',title: 'first Post',body: 'yay'
}

author: {
  uid: '123AA',displayName: 'Richard'
  email: 'im@richard.com'
}

我想使用作者姓名呈现帖子:

<div className="post">
  <div className="title">{post.title}</div>
  <div className="body">{post.body}</div>
  <div className="author-name">{post.author.displayName}</div> //problem
</div>

提取的帖子项目只包含作者的uid,但我需要作者的displayName.检索帖子时如何填充作者字段?这就是我现在要取的帖子:

const postsRef = firebase.database().ref('posts/')
postsRef.on('value',(snapshot) => {
  this.setState({posts: snapshot.val()})
})

解决方法

在真正的firebase中不确定,但我经常在angular2中使用join.这是我的示例代码.
import { Component,OnInit } from '@angular/core';
import { AngularFire } from 'angularfire2';
import { Observable } from 'rxjs/Observable'; 
import 'rxjs/add/operator/map';

@Component({
  selector: 'app',templateUrl: `
    <ul>
        <li *ngFor="let p of posts | async">
            {{ p.title }} - {{ (p.authorName | async)?.displayName }}
        </li>        
    </ul>
`
})
export class InitComponent implements OnInit {
    posts: Observable<any[]>;

  constructor(private af: AngularFire) {}

  ngOnInit() {
      this.posts = this.af.database.list('/posts')
      .map(posts => {
          posts.map(p => {
              p.authorName = this.af.database.object('/authors/'+p.authorId);
          });
          return posts;
      });
  }

数据库结构如下:

/posts/postId/{authorId,title,body}
/authors/authorId/{displayName,email}

希望这可以帮助

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ &quot;TOC&quot; 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...