我想为我的搜索结果中映射的每个项目启动一个超级代理请求。要检查项目 id 是否在数组中:
我有这些方法;一个映射结果,另一个是超级代理获取:
renderResultNodes: function () {
if(!this.props.results) return;
return this.props.results.map(function (result) {
// fire off request here?
// show tick icon if id exists
var showIcon = this.isSchool(school.id) ? <i className="icon item-icon-right ion-checkmark-circled"></i> : '';
return (
<a className="item item-icon-right" key={result.id} href="#"
data-school-id={result.id}
data-school-name={result.school_name}
onClick={this.selectSchool}
>
<h2>{result.school_name}</h2>
<p>{result.s_address1}</p>
{showIcon}
</a>
);
}.bind(this));
},
// check id exists in json
isSchool: function (schoolId){
var url = OsaApiService.buildRequestUrl('home', [schoolId]);
fetch(url)
.then(function (response) {
return response.json();
}).then(function (data) {
console.log(data);
}.bind(this)).catch(function (ex) {
console.log(ex);
});
},
谁能建议这是否是最好的方法?我应该怎么做?
谢谢