简体   繁体   English

Flask 分页不适用于 AWS Chalice

[英]Flask Pagination is not working with AWS Chalice

Pagination is not working with AWS chalice, is there any other way to implement pagination?分页不适用于 AWS chalice,还有其他方法可以实现分页吗?

from flask import request

@app.route('/hello/{name}')
def hello_name(name):
    page = request.args.get('page', 1, int)
    print(page)
#    # '/hello/james' -> {"hello": "james"}
    return {'hello': name}

Error:错误:

Traceback (most recent call last):
  File "/Users/thirumal/opt/anaconda3/lib/python3.8/site-packages/chalice/app.py", line 1691, in _get_view_function_response
    response = view_function(**function_args)
  File "/Users/thirumal/git/vfc-lambda/app.py", line 39, in hello_name
    page = request.args.get('page', 1, int)
  File "/Users/thirumal/opt/anaconda3/lib/python3.8/site-packages/werkzeug/local.py", line 348, in __getattr__
    return getattr(self._get_current_object(), name)
  File "/Users/thirumal/opt/anaconda3/lib/python3.8/site-packages/werkzeug/local.py", line 307, in _get_current_object
    return self.__local()
  File "/Users/thirumal/opt/anaconda3/lib/python3.8/site-packages/flask/globals.py", line 38, in _lookup_req_object
    raise RuntimeError(_request_ctx_err_msg)
RuntimeError: Working outside of request context.

This typically means that you attempted to use functionality that needed
an active HTTP request.  Consult the documentation on testing for
information about how to avoid this problem.

Pagination example:-分页示例:-

from chalice import Chalice

app = Chalice(app_name='aws-chalice-tutorial')


@app.route('/pagination')
def pagination():
    app.log.debug("you are in Pagination!")
    return {
        'page': app.current_request.query_params.get('page'),
        'limit': app.current_request.query_params.get('limit'),
    }

Request:要求:

http://localhost:8000/pagination?page=0&limit=10 http://localhost:8000/pagination?page=0&limit=10

{'page':'0','limit':'10'}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM