我正在尝试使用 Endpoints 原型数据存储实现GeoModel ,如下所示:
class Professional(EndpointsModel , GeoModel):
pass
得到:
TypeError: Error when calling the metaclass bases
metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases
我希望能够使用 Endpoints Proto Datastore 并能够按邻近度等进行搜索。
有什么建议么 ?