简体   繁体   English

如何将 url_for 与 flask_restx 一起使用?

[英]How to use url_for with flask_restx?

I can use url_for in a flask 2.0.1 template like我可以在flask 2.0.1 模板中使用url_for

<!-- flask-template.html -->
<button onclick="window.location.href='{{ url_for( 'testimport') }}';" >Import</button>

along with随着

@app.route('/import/images')
def testimport():
  return "ok"

but I cannot do it with a resource in flask-restx 0.5.1.但我不能用flask-restx 0.5.1 中的资源来做到这一点。

api = Api(app, version='1.0',
          title='The Restx API',
          description='An API to initiate basic operations')
ns_detect = api.namespace('detect', path='/', description='Detection')
@ns_detect.route('/detect/recording')
class DetectRecording(Resource):
    def post(self):
        return {"status": "ok"}

Can anybody please explain, how to correctly use url_for in the flask-restx case above?谁能解释一下,如何在上面的 flask-restx 案例中正确使用url_for

<button value="{{ url_for( 'ns_detect.DetectRecording') }}">1</button> <!-- can't build -->
<button value="{{ Api.url_for( 'DetectRecording') }}">2</button> <!-- Api undefined -->
<button value="{{ api.url_for( 'DetectRecording') }}">3</button> <!-- api undefined -->
<button value="{{ url_for( 'ns_detect.DetectRecording') }}">4</button> <!-- can't build -->
<button value="{{ url_for( 'api.DetectRecording') }}">5</button> <!-- can't build -->
<button value="{{ url_for( 'ns_detect.DetectRecording.post') }}">6</button> <!-- can't build -->
  

btw: I have installed顺便说一句:我已经安装了
Werkzeug 2.0.3 Werkzeug 2.0.3
Jinja2 3.1.2 Jinja2 3.1.2

After some trial and error, I figured out, which magic key is required to make url_for work with flask-restx :经过反复试验,我想通了,使url_forflask-restx一起工作需要哪个魔术键:
it's a combination of namespace and a modified classname.它是命名空间和修改后的类名的组合。
Example:例子:

ns = api.namespace('xxx', path='/', description='some description')  
@ns.route('/some/endpoint')
class DoSomething(Resource):
    def post(self):
        return {"status": "ok"}

then use url_for({{ 'xxx_do_something' }}) .然后使用url_for({{ 'xxx_do_something' }})

Maybe the flask-restx documentation would benefit from such an example..也许 flask-restx 文档会从这样的例子中受益。

When using flask.Blueprint and flask_restx.Namespace together, you have to reference the blueprint, the namespace, and the class name of the route in your call of flask.url_for .一起使用flask.Blueprintflask_restx.Namespace时,您必须在调用 flask.url_for 时引用蓝图、命名空间和路由的flask.url_for名称。

The format, as xy described, is "blueprint.namespace_route_name".xy所述,格式为“blueprint.namespace_route_name”。 Remember that the camelcase in the class's name is deconstructed to snake_case.请记住,类名称中的驼峰式被解构为 snake_case。 (RouteName -> route_name, in the example above) (RouteName -> route_name,在上面的例子中)

Example例子

The example below has the API registered as a flask.Blueprint and the flask_restx.Api object registered has two namespaces (Users and Books) each with a single GET routes.下面的示例将 API 注册为flask.Blueprint ,将flask_restx.Api object 注册为两个命名空间(Users 和 Books),每个命名空间都有一个 GET 路由。 Both routes return their corresponding endpoints using flask.url_for两条路由都使用flask.url_for返回它们对应的端点

    
    # Create a Flask app
    app = Flask(__name__)
    
    # Create 'api' BLUEPRINT for the API, named "api"
    blueprint = Blueprint('api', __name__)
    
    # Create an instance of the Api class
    api = Api(blueprint)
    
    # Define the 'users' NAMESPACE
    users_ns = Namespace('users', description='Users related operations')
    
    # Define the 'UsersList' ROUTE in the 'users' NAMESPACE
    @users_ns.route('/')
    class UsersList(Resource):
        def get(self):
            return {'UsersList_url': url_for('api.users_users_list')}
    
    # Define the 'books' NAMESPACE
    books_ns = Namespace('books', description='Books related operations')
    
    # Define the "Books" ROUTE in the 'books' NAMESPACE
    @books_ns.route('/')
    class Books(Resource):
        def get(self):
            return {'Books_url': url_for('api.books_books')}
    
    # Register the namespaces with the API
    api.add_namespace(users_ns)
    api.add_namespace(books_ns)
    
    # Register the blueprint with the Flask app
    app.register_blueprint(blueprint)
    
    if __name__ == '__main__':
        app.run(debug=True)

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

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