0

我一直在使用endpoints_proto_datastore库来构建我的端点 API,并且我试图弄清楚如何返回我从搜索 API 中检索到的记录结果列表。

@query_method 似乎需要返回一个 Query 类型,它会在内部进行 fetch 调用。我将如何实现一个可以处理全文搜索的端点方法?我是否只定义了一个自定义的 protopc requets 消息和响应消息并一起跳过 endpoints_proto_datastore 库?

这是我尝试过的,但得到了一个错误,即列表没有 ToMessage 属性。

Encountered unexpected error from ProtoRPC method implementation: AttributeError ('list' object has no attribute 'ToMessage')
Traceback (most recent call last):
  File "google_appengine/lib/protorpc-1.0/protorpc/wsgi/service.py", line 181, in protorpc_service_app
    response = method(instance, request)
  File "google_appengine/lib/endpoints-1.0/endpoints/api_config.py", line 1329, in invoke_remote
    return remote_method(service_instance, request)
  File "google_appengine/lib/protorpc-1.0/protorpc/remote.py", line 412, in invoke_remote_method
    response = method(service_instance, request)
  File "third_party/py/endpoints_proto_datastore/ndb/model.py", line 1416, in EntityToRequestMethod
    response = response.ToMessage(fields=response_fields)
AttributeError: 'list' object has no attribute 'ToMessage'

这是代码的一般视图:

class MyModel(EndpointsModel):
  SearchSchema = MessageFieldsSchema(('q',))

  _query_string = None

  def QueryStringSet_(self, value):
    self._query_string = value

  @EndpointsAliasProperty(name='q', setter=QueryStringSet_)
  def query_string(self):
    return self._query_string


class MyServices(...):
  @MyModel.method(
      request_fields=MyModel.SearchSchema,
      name='search', path='mymodel/search')
  def SearchMyModel(self, request):
    return MyModel.Search(request.q)
4

1 回答 1

0

如果您使用的是 Java,那么答案将是使用

 import com.google.api.server.spi.response.CollectionResponse;

在 python 中,您需要创建Response Message Classes

于 2014-09-13T01:07:44.400 回答