作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个使用 Algolia 的 React InstantSearch 的网页。它有一个搜索栏和一些改进。
我希望用户能够按下按钮并获得所有个匹配结果的列表。
要获得所有结果的列表,我需要使用Browse Index而不是 Search Index .浏览索引允许检索所有命中;搜索索引最多只能检索 1000 个匹配项。但是,不应在 UI 中使用浏览索引。因此,我想在我的 Web 服务器上创建一个 API 端点,该端点使用浏览索引来返回给定搜索查询的匹配命中列表。
我能够成功地为搜索查询执行此操作,但我不知道如何进行优化。
这是我目前所拥有的草图。
后端(在 Ruby 中):
ALGOLIA_INDEX = Algolia::Index.new('Products')
class AlgoliaSearchController < ActionController::Base
def get_search_results
query = params['query']
hits = []
ALGOLIA_INDEX.browse({query: query}) do |hit|
hits << hit
end
render json: hits
end
end
前端:
import qs from 'qs';
import React, { useCallback, useState } from 'react';
import { InstantSearch } from 'react-instantsearch-dom';
function getSearchResults(query) {
const queryString = qs.stringify({
query,
})
return fetch(`/search_results?{queryString}`);
}
function App() {
const [searchState, setSearchState] = useState(null);
const onSearchStateChange = useCallback(searchState => {
setSearchState(searchState);
}, [searchState]);
const onClick = useCallback(() => {
console.log(getSearchResults(searchstate.query));
});
return (
<InstantSearch ... onSearchStateChange={onSearchStateChange}>
<button onClick={onClick}>Search</button>
</InstantSearch>
);
}
我找不到任何资源来解释如何使用优化进行搜索。
到目前为止我看过的东西:
我可以尝试映射searchState format到Search API Parameters浏览索引使用。我可以编写自己的从搜索状态到查询的映射器,但是,1)这看起来很复杂,我怀疑我错过了一些更简单的东西,2)这似乎应该在某个地方开源,因为我怀疑我不是首先遇到这个问题。
有一篇文章,Backend InstantSearch ,它解释了如何编写一个可以插入 InstatSearch
组件的后端。但是它没有解释我如何从搜索状态进行一次性搜索。
最佳答案
您说得对,目前这并不完全简单。获取可用于“浏览”的原始搜索参数的流程如下:
helper.getQuery()
获取要应用的查询参数说明这一点的沙盒是:https://codesandbox.io/s/extending-widgets-luqd9
import React, { Component } from 'react';
import algoliaHelper from 'algoliasearch-helper';
import { connectStateResults } from 'react-instantsearch-dom';
class Downloader extends Component {
state = {
instructions: '',
};
onDownloadClick = () => {
// get the current results from "connectStateResults"
const res = this.props.searchResults;
// read the private "state" (SearchParameters) from the last results
const state = res && res._state;
// create a new "helper" with this state
const helper = algoliaHelper({}, state.index, state);
// get the query parameters to apply
const rawQuery = helper.getQuery();
this.setState({
instructions:
'Do a search backend with this:\n\nclient.browseAll(' +
JSON.stringify(rawQuery, null, 2) +
')',
});
};
render() {
return (
<React.Fragment>
<button onClick={this.onDownloadClick}>download</button>
<pre>{this.state.instructions}</pre>
</React.Fragment>
);
}
}
export default connectStateResults(Downloader)
关于Algolia:如何将细化从前端传递到后端?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57964938/
我是一名优秀的程序员,十分优秀!