Flask-Restless无法构造查询

时间:2013-02-07 07:30:23

标签: python flask-restless

我最近使用Flask-Restless来创建API。

当我尝试查询API时,我在Web浏览器(firefox)上出现“无法构造查询”错误消息。这是查询:

http://localhost:5000/api/product?q={ "filters" : [ { "name": "name", "op": "eq", "value": "mercy" } ] }

这是Product类:

class Product(db.Model):
    id = db.Column(db.Integer, primary_key=True, autoincrement=True)
    name = db.Column(db.String(80))
    details = db.Column(MutableDict.as_mutable(HSTORE))

    def __init__(self, name, details):
        self.name = name
        self.details = details

    def __repr__(self):
        return self.name

此错误仅在我使用查询时发生。仅访问http://localhost:5000/api/product工作正常。

有什么问题?

我试图省略HSTORE字段,但仍然出错。所以,我认为HSTORE不是嫌疑人。

1 个答案:

答案 0 :(得分:1)

尝试使用val代替value

reference