如何添加namespace.expect以url作为参数传递的参数

问题描述 投票:2回答:1

我在Resource类下面写过:

@clinic_api_ns.route("/patient/profile")
class PatientProfile(Resource):
    def get(self):
        patient = request.args.get(patient)
        relative = request.args.get(relative)
        relationType = request.args.get(relationType)
        contactNumber = request.args.get(contactNumber)
        townCity = request.args.get(townCity)
        return controller.get_patient_profile(patient, relative, relationType, contactNumber, townCity)

以便获取患者资料,我可以使用通过URL传递的参数,例如http://ip.address/api/clinic/patient/profile?patient=<patientName>&relative=<relativeName>&relationType=<relation>

但是即使我尝试添加@_api_ns.expect(patient_profile, validate=True),这也会在错误的文档中引发错误>

patient_profile在哪里

class PatientProfile(object):
    profile = clinic_api_ns.model("profile", {
        "patient": fields.String(required=True, description="name of the patient."),
        "relative": fields.String(required=True, description="name of parent or husband."),
        "relation": fields.String(required=True, description="type of relation with patient."),
        "contactnumber": fields.String(required=True, description="contact number of the patient."),
        "townCity": fields.String(required=True, description="town or city the patient belongs to."),        
        })

我在下面编写了资源类:@ clinic_api_ns.route(“ / Patient / profile”)类PatientProfile(资源):def get(自身):Patient = request.args.get(Patient)relative = request ....

swagger-ui flask-restful flask-restplus
1个回答
0
投票

您可以使用解析器解决此问题。

© www.soinside.com 2019 - 2024. All rights reserved.