Ответ Python Swagger становится нулевым (Flask, Flask_Restplus) - PullRequest
0 голосов
/ 22 апреля 2019

Я могу просматривать содержимое ответа в терминале, но в пользовательском интерфейсе swagger он отображается пустым.

Проблема: для отладки я попытался напечатать значение из переменной ret в функции json_response_from_dict(dict_), и оно показывает мне значение, которое я ввожу через пользовательский интерфейс Swagger. Но в ответе пользовательского интерфейса Swagger он пустует.

Empty response body in swagger

Но в ответе в терминале он показывает <Response 141 bytes [200 OK]>, а значение ret в терминале также показывает {"rec_id": 464, "frame_id_prob": [[1, 0.1], [2, 0.1], [3, 0.1], [4, 0.1], [5, 0.6]], "comment": "these frames suit everyone", "mine_id": NaN} Я не могу определить, где теряется значение.

MCVE:

from flask import Flask, Blueprint, request, Response
from flask_restplus import Resource, Api, fields
from flask.views import MethodView
import json
import numpy as np
def json_response_from_dict(dict_):
    """converts a python dictionary to a json string, and returns
    a HHTP response for a JSON string
    dict_ -- input python dictionary
    """

    ret = json.dumps(dict_)
    print(ret)
    resp = Response(response=ret,
                    status=200,
                    mimetype="application/json")
    print(resp)
    return resp


app = Flask(__name__)



api_v1 = Blueprint('api', __name__, url_prefix='/api/1')

api = Api(api_v1, version='1.0', title='my API',
    description='my API',
)
ns = api.namespace('my', description='my operations')

myModel = api.model('my Model', {
    'rec_id': fields.Integer(readOnly=True, description='Random Choice'),
    'comment': fields.String(required=True, description='Comments'),
    'mine_id' : fields.String(required=True, description='unique ECP ID')
})


# Register blueprint at URL
# (URL must match the one given to factory function above)
app.register_blueprint(api_v1)


@ns.route("/dev/get_rec_id", methods=["POST"])
@ns.param('mine_id', 'unique ECP ID')
class RecommendationService(Resource):
    @ns.doc('path to generate a unique recommendationid, and to determine which predictions can be made for. Expected/optional input :      JSON string as a https html data objects with keys: mine_id -- unique ECP ID. If this is not provided generic recommendations will be provided.')
    @ns.marshal_list_with(myModel)
    def post(self):
        mine_id = np.nan
        if request.is_json:
            mine_id = request.json.get('mine_id', np.nan)

        return json_response_from_dict({
            'rec_id': np.random.choice(1000),
            'fun_id_prob': [[1, 0.1], [2, 0.1], [3, 0.1], [4, 0.1], [5, 0.6]],
            'comment': 'these games suit everyone',
            'mine_id': mine_id
             })




if __name__ == '__main__':
    app.run(debug=True)

Я последовал совету здесь и изменил функцию на

@ns.route("/dev/get_rec_id", methods=["POST"])
@ns.param('mine_id', 'unique ECP ID')
class RecommendationService(Resource):
    @ns.doc('path to generate a unique recommendationid, and to determine which frames predictions can be made for. Expected/optional input :       JSON string as a https html data objects with keys: mine_id -- unique ECP ID. If this is not provided generic frames recommendations will be provided.')
    @ns.marshal_list_with(myModel)
    def post(self):
        mine_id = np.nan
        if request.is_json:
            mine_id = request.json.get('mine_id', np.nan)

        return {'rec_id': np.random.choice(1000),
            'fun_id_prob': [[1, 0.1], [2, 0.1], [3, 0.1], [4, 0.1], [5, 0.6]],
            'comment': 'these games suit everyone',
            'mine_id': mine_id
             }

Но та же проблема все еще сохраняется.

1 Ответ

0 голосов
/ 22 апреля 2019
@ns.route("/dev/get_rec_id", methods=["POST"])
@ns.param('mine_id', 'unique ECP ID')
class RecommendationService(Resource):
    @ns.doc('path to generate a unique recommendationid, and to determine which frames predictions can be made for. Expected/optional input :       JSON string as a https html data objects with keys: mine_id -- unique ECP ID. If this is not provided generic frames recommendations will be provided.')
    @ns.marshal_list_with(myModel)
    def post(self):
        mine_id = np.nan
        if request.is_json:
            mine_id = request.json.get('mine_id', np.nan)

        return {'rec_id': np.random.choice(1000),
            'fun_id_prob': [[1, 0.1], [2, 0.1], [3, 0.1], [4, 0.1], [5, 0.6]],
            'comment': 'these games suit everyone',
            'mine_id': mine_id
             }

В этом случае подпись не совпадает, т. Е. fun_id_prob не было в подписи API, также по какой-то причине при вызове X-Fields ее необходимо оставить пустым.

Просто используйте

@ns.route("/dev/get_rec_id", methods=["POST"])
@ns.param('mine_id', 'unique ECP ID')
class RecommendationService(Resource):
    @ns.doc('path to generate a unique recommendationid, and to determine which frames predictions can be made for. Expected/optional input :       JSON string as a https html data objects with keys: mine_id -- unique ECP ID. If this is not provided generic frames recommendations will be provided.')
    @ns.marshal_list_with(myModel)
    def post(self):
        mine_id = np.nan
        if request.is_json:
            mine_id = request.json.get('mine_id', np.nan)

        return {'rec_id': np.random.choice(1000),
            'comment': 'these games suit everyone',
            'mine_id': mine_id
             }

Или добавьте список к подписи и он будет работать :).

...