したがって、基本的にユーザーのプロファイルを保存するだけのこの定義があります。現在、1 つの成功メッセージがあります。複数の成功メッセージとエラー メッセージの間でローテーションしたいと思います。
value = {'result': 'success', 'message': '...'}
これについてどう思いますか?
@view_config(route_name="profile", request_method='POST')
def save_profile(self):
try:
json = self.request.json_body
first_name = str(json['firstName'])
last_name = str(json['lastName'])
organization = str(json['organization'])
title = str(json['title'])
phones = (json['phones'])
emails = (json['emails'])
self.profiles.update(firstName=first_name, lastName=last_name, organization=organization, title=title, emails=emails, phones=phones)
value = {'result': 'success', 'message': "Saved! Worry not, nothing sent to the NSA... as far as we know"}
except Exception, err:
print err
value = {'result': 'error', 'message': 'The internets are clogged up, our monkeys are checking it out'}