我想要实现类似在airbnb(https://www.airbnb.com/s/Paris--France?source=ds&page=1&s_tag=PNoY_mlz&allow_override%5B%5D=)上进行地图拖动搜索的功能

我将这样的数据保存在数据存储区中

 user.lat = float(lat)
     user.lon = float(lon)
     user.geoLocation = ndb.GeoPt(float(lat),float(lon))


每当我拖放地图或放大或缩小时,都会在控制器中获得以下参数

    def get(self):
    """
    This is an ajax function. It gets the place name, north_east, and south_west
    coordinates. Then it fetch the results matching the search criteria and
    create a result list. After that it returns the result in json format.
    :return: result
    """
    self.response.headers['Content-type'] = 'application/json'
    results = []
    north_east_latitude = float(self.request.get('nelat'))
    north_east_longitude = float(self.request.get('nelon'))
    south_west_latitude = float(self.request.get('swlat'))
    south_west_longitude = float(self.request.get('swlon'))
    points = Points.query(Points.lat<north_east_latitude,Points.lat>south_west_latitude)
    for row in points:
        if  row.lon > north_east_longitude and row.lon < south_west_longitude:
            listingdic = {'name': row.name, 'desc': row.description, 'contact': row.contact, 'lat': row.lat, 'lon': row.lon}
            results.append(listingdic)
    self.write(json.dumps({'listings':results}))


我的模型课如下

class Points(ndb.Model):
    name = ndb.StringProperty(required=True)
    description = ndb.StringProperty(required=True)
    contact = ndb.StringProperty(required=True)
    lat = ndb.FloatProperty(required=True)
    lon = ndb.FloatProperty(required=True)
    geoLocation = ndb.GeoPtProperty()


我想改善查询。

提前致谢。

最佳答案

不,您不能通过检查查询中的所有4个条件来改进解决方案,因为ndb查询不支持多个属性上的不平等过滤器。从NDB Queries(重点是我):


  限制:数据存储区对查询实施一些限制。
  违反这些将导致它引发异常。例如,
  合并过多的过滤器,对多个不等式使用
  属性,或将不等式与排序顺序组合
  目前都不允许使用其他属性。还可以过滤
  引用多个属性有时需要二级索引
  被配置。





  注意:如前所述,数据存储区对多个属性使用不等式过滤拒绝查询。

09-10 22:20