来自GAE Python Search API文档: https://developers.google.com/appengine/docs/python/search/queryoptionsclass?hl=en
包含代码:
pages = results.found_count / page_size
我正在尝试访问SearchResults对象的'found_count'属性,但在日志中收到以下错误:
'SearchResults' object has no attribute 'found_count'
此属性是否已弃用?我在GAE Search API文档中看不到任何其他对'found_count'的引用。
答案 0 :(得分:0)
看起来已被number_found
属性所取代,在文档中的其他位置引用..文档不同步!
这有效:results.number_found