Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exercise 33 Code Issues #13

Open
rolimatrix opened this issue Jan 5, 2021 · 0 comments
Open

Exercise 33 Code Issues #13

rolimatrix opened this issue Jan 5, 2021 · 0 comments

Comments

@rolimatrix
Copy link

rolimatrix commented Jan 5, 2021

In Class \Ressources\User.py you wrote this Code:
class UserListResource(Resource):
def post(self):

    json_data = request.get_json()
    data, errors = user_schema.load(data=json_data)

But data, errors = user_schema.load(data=json_data) will ever issue execptions.

I changed with: from marshmallow import ValidationError
to:
try:
data = user_schema.load(data=json_data)
except ValidationError as errors:
return {'message': 'Validation errors', 'errors': errors.messages}, HTTPStatus.BAD_REQUEST

Now its working very well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant