Flask-Restful:通过POST请求将列表传递到MongoDB

时间:2014-03-02 22:28:23

标签: python mongodb pymongo command-line-interface flask-restful

我正在使用Python,Flask-Restful w / pymongo为新的Web服务构建API。

示例MongoDB文档 应如下所示:

{ domain: 'foobar.com',
  attributes: { web: [ akamai,
                       google-analytics,
                       drupal,
                       ... ] } }


导入:

from flask import Flask, jsonify
from flask.ext.restful import Api, Resource, reqparse
from pymongo import MongoClient


课程:

class AttributesAPI(Resource):
def __init__(self):
    self.reqparse = reqparse.RequestParser()
    self.reqparse.add_argument('domain', type = str, required = True, help = 'No domain given', location='json')
    self.reqparse.add_argument('web', type = str, action='append', required = True, help = 'No array/list of web stuff given', location = 'json')
    super(AttributesAPI, self).__init__()

def post(self):
    args = self.reqparse.parse_args()
    post = db.core.update(  {'domain': args['domain']},
                            {'$set':{'attr': {  'web': args['web'] }}},
                            upsert=True)
    return post


当我发布CURL时,我使用它:

curl -i -H "Content-Type: application/json" -X POST -d '{"domain":"foobar", "web":"akamai", "web":"drupal", "web":"google-analytics"}' http://localhost:5000/v1/attributes


但是,这是保存在我的文档中的内容:

{ "_id" : ObjectId("5313a9006759a3e0af4e548a"), "attr" : { "web" : [  "google-analytics" ] }, "domain" : "foobar.com"}


它只存储'web'卷曲中给出的最后一个值。我还尝试使用带有多个-d参数的CLI命令,如reqparse documentation中所述,但会引发400-BAD REQUEST错误。

任何想法为什么它只保存最后一个值而不是所有值作为列表?

2 个答案:

答案 0 :(得分:1)

在JSON对象和Python词典中,名称​​ unique ;你不能在这里重复web密钥并期望它能够工作。请改为使用一个 web密钥,并将值设为列表:

{"domain": "foobar", "web": ["akamai", "drupal", "google-analytics"]}

应该按原样处理。

答案 1 :(得分:0)

除了@Martin Pieters的回答,您还需要将location上的self.reqparse.add_argument参数设置为jsonvalues以及{{1}的元组参数是store

append