我正在尝试转换此代码(有js和jquery版本,但没有react版本):
https://github.com/algolia/algoliasearch-helper-js/issues/578#issuecomment-440594378
在反应版本中,我想在hrefs版本中使用此版本:
<div id="list"></div>
在js版本中,代码如下:
$("#algolia").html(function() {
return $.map(allHits, function(hit) {
return "<a href=\"" + hit.url + "\"class=\"c-link c-link--brand\"><strong>" + hit._highlightResult.name.value + "</strong><br/>" + hit._highlightResult.description.value + "</a><br/>"
})
})
但是如何在反应中使用hrefs来填充div?因为我们在此部分中没有渲染部分:
helper.on("result", function(content) {
renderHits(content)
});
reactor,循环输入数组数据并填充div相当于什么?