我的.ts文件中有这个
myobj: Observable<MyObj[]>;
我可以在我的HTML
文件中循环查看所有myObj[]
来自我的API
是否可以将此Observable
转换为Array
的{{1}}?
答案 0 :(得分:-1)
您可以在HTML模板中将*ngFor directive与asyncPipe一起使用。
您的情况:
class Post < ApplicationRecord
searchkick word_start: [:author_name, author_country]
def search_data # override indexing fields
{
tite: self.title,
date: self.created_at,
author_name: author[:name], # nested json(author field)
author_country: author[:country],
comments_ids: comments.map(&:id) # index as an array of ids
}
end
end