Kaynağa Gözat

Updated to use common jsonify code for sqlalchemy models.

Charlie Root 7 yıl önce
ebeveyn
işleme
c6a65ad9fc
1 değiştirilmiş dosya ile 14 ekleme ve 6 silme
  1. 14 6
      ibr1.py

+ 14 - 6
ibr1.py

@@ -96,16 +96,24 @@ class Zipcode(db.Model):
 
 api = Api(app)
 
-
+def model_to_dict(model):
+    data = {}
+    for col in model.__table__.c.keys():
+        # data[col] = getattr(c, col, None) # c[col]
+        data[col] = str( getattr(model, col, None) ) # c[col]
+    return data
+ 
 class IBRSimple(Resource):
     def get(self, todo_id):
         # Ok, lookup the id, and return the json
         c = Candidate.query.filter_by(ID=todo_id).first()
-        data = {}
-        for col in c.__table__.c.keys():
-            # data[col] = getattr(c, col, None) # c[col]
-            data[col] = str( getattr(c, col, None) ) # c[col]
-        return data
+        return model_to_dict(c)
+
+        # data = {}
+        # for col in c.__table__.c.keys():
+        #     # data[col] = getattr(c, col, None) # c[col]
+        #     data[col] = str( getattr(c, col, None) ) # c[col]
+        # return data
         # {'id': todo_id, 'stuff': True }
 
 api.add_resource(IBRSimple, '/<string:todo_id>')