我正在尝试动态生成查询。
我有一个很大的对象,比如位置和价格数据。但我从请求中获取了这些数据。如果每个查询事物都是一个链式函数,我该如何动态地使用该数据?
理想情况下,我想转换这样的东西......
<ion-item no-lines no-padding *ngFor="let company of shortedDistanceArray">
<div>
<img style="width: 15vh;height: 12vh;" src={{company.images}}" />
</div>
</ion-item>
...到...
const wheres = [
{ key: 'price', operator: '>=', value: '1000' },
{ key: 'price', operator: '<=', value: '2000' }
]