我编写了一个烧瓶-restful API,以及一个带有peewee 的SQLite 数据库。我能够“获取”我存储数据的艺术作品列表。我还能够毫无问题地“获取”单件、“发布”和“放置”。但是,如果我想删除单个片段,我的 API 将删除所有片段条目。现在我只是在使用邮递员测试我的 API,所以我知道这不是 AJAX 或 javascript 错误(我稍后会写)。任何指导都可能会有所帮助。
我试图增加发出删除请求所需的查询数量,其中我的数据库中的 created_by 字段(它是一个整数 id)必须与用户身份验证的 id 匹配。我创建了两个用户并分别发布了两个不同的片段,并且对片段运行删除请求仍然删除了所有片段。
def piece_or_404(id):
try:
piece = models.Piece.get(models.Piece.id==id)
except models.Piece.DoesNotExist:
abort(404)
else:
return piece
class Piece(Resource):
def __init__(self):
self.reqparse = reqparse.RequestParser()
self.reqparse.add_argument(
'title',
required=True,
help='No title provided',
location=['form', 'json']
)
self.reqparse.add_argument(
'location',
required=True,
help='No url provided',
location=['form', 'json']
)
self.reqparse.add_argument(
'description',
required=False,
nullable=True,
location=['form', 'json'],
)
self.reqparse.add_argument(
'created',
type=inputs.date,
required=False,
help='Date not in YYYY-mm-dd format',
location=['form', 'json']
)
self.reqparse.add_argument(
'price',
type=inputs.positive,
required=True,
help='No price provided',
location=['form', 'json']
)
self.reqparse.add_argument(
'created_by',
type=inputs.positive,
required=True,
help='No user provided',
location=['form', 'json']
)
super().__init__()
@auth.login_required
def delete(self, id):
try:
Piece = models.Piece.select().where(
models.Piece.id==id
).get()
except models.Piece.DoesNotExist:
return make_response(json.dumps(
{'error': 'That Piece does not exist or is not editable'}
), 403)
query = Piece.delete()
query.execute()
return '', 204, {'Location': url_for('resources.pieces.pieces')}
如果我有 id 为 1、2 和 3 的片段,那么在 url.com/api/v1/pieces/1 上运行有效的删除请求,应该只删除 id 为 1 的片段。