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(" ");