Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テキスト検索を有効にするために、Node.js アプリケーションに検索機能を実装しています。次のようなフィールドが必要です。
{ title : "this is fun" , _keywords : [ "this" , "is" , "fun" ] }
Node.Jsから示されているように_keywordsフィールドを取得するには? 上記のように、_keywords をタイトルに対応させる方法はありますか。
さて、あなたの質問からわかる限りでは、あなたは を に分割したいと思っていると思いtitleます_keywords。
title
_keywords
次のようなことを行うことで、node.jsでこれを実現できます。
_keywords = title.split(" ");