我在我的Rails应用程序上实现了Algolia的即时搜索。我用它来显示产品列表作为搜索结果。
对于即时搜索实施,我遵循了Algolia的指南。
我创建了一个名为Products的索引(在我的Algolia帐户上)。它有一个名字,网址,图片和一个id(+ Algolia给出的一个objectID)。
我的application.js文件包含Algoli搜索小部件:
var search = instantsearch({
// Replace with your own values
appId: "1JJ5DY0CLA",
apiKey: 'e24882443747d61c496efc4e17288a36', // search only API key, no ADMIN key
indexName: 'Idea',
urlSync: true
});
search.addWidget(
instantsearch.widgets.searchBox({
container: '#search-input',
placeholder: 'Search for growth ideas',
poweredBy: true
})
);
search.addWidget(
instantsearch.widgets.hits({
container: '#hits',
hitsPerPage: 10,
templates: {
item: getTemplate('hit'),
empty: getTemplate('no-results')
}
})
);
search.start();
function getTemplate(templateName) {
return document.querySelector('#' + templateName + '-
template').innerHTML;
}
我的index.html.erb视图中的代码如下所示:
# Comment: this is the code to structure each result sent by the API
<script type="text/html" id="hit-template">
<div class="product">
<div class="product-title">
<h3>{{title}}</h3>
</div>
<div class="product-link">
<%= link_to "Voir", CGI::unescape(product_path("
{{objectID}}")) %>
</div>
</div>
以下是Algolia发送的结果(从浏览器中获取),不知道如何在视图/控制器中获取结果变量。
"hits": [
{
"id": 1881,
"name": "FOULARD NOA PRINT OFF WHITE/TERRA/GERANIUM",
"female": true,
"category": "Accessoires",
"brand_id": 7,
"url": "https://www.ekyog.com/foulard-noa-print-off-white/terra/geranium.html",
"photos": [
"https://www.ekyog.com/Imagestorage/imagesSynchro/556/790/e86cffa2bbbeea83a9d4bb7de0bbd5c368a6c9dd_B-FOU-288-P219.jpg",
"https://www.ekyog.com/Imagestorage/imagesSynchro/556/790/4644f21ce6e8ddf8a1b3af053264c2c5429567d5_B-FOU-288-P219-CONF1.jpg"
],
"price_cat": "0€ - 50€",
"subcategory": "Echarpes & Foulards",
"price_cents": 3400,
....
我可以得到这样的链接:
<%= link_to "Voir", CGI::unescape(product_path("{{objectID}}")) %>
如何在视图中检索ruby对象?
我尝试这样做:
<% product = Product.find("{{objectID}}") %>
或
<% product = Product.find("{{id}}") %>
但它没有用。如何在视图/控制器中获取对象?
答案 0 :(得分:2)
您的ERB代码仅在页面渲染时评估。
您的link_to
将有效,因为这只是生成一个字符串(例如/products/{{objectID}}
),稍后将由前端更新。
您无法使用这些变量实际使用Ruby代码对它们执行某些操作。实际上,使用instantsearch.js
,您可以在不重新加载页面的情况下动态检索结果,这意味着您只能访问JavaScript上下文。