我正在使用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错误。
任何想法为什么它只保存最后一个值而不是所有值作为列表?
答案 0 :(得分:1)
在JSON对象和Python词典中,名称 unique ;你不能在这里重复web
密钥并期望它能够工作。请改为使用一个 web
密钥,并将值设为列表:
{"domain": "foobar", "web": ["akamai", "drupal", "google-analytics"]}
应该按原样处理。
答案 1 :(得分:0)
除了@Martin Pieters的回答,您还需要将location
上的self.reqparse.add_argument
参数设置为json
和values
以及{{1}的元组参数是store
append