- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我创建了一个简单的 eve-sqlalchemy
应用程序,它具有 User
和 Role
资源,以模仿 an example on their webpage 。 User
类可以具有多个角色。下面提供了完整的示例代码。
我希望能够POST
具有角色的用户,或PATCH
用户的角色。我一直无法找到一种方法来做到这一点而不遇到错误。
看起来eve-sqlalchemy
将User.roles
的类型强制为整数,这是Role
类的主键 id
。如果我将 POST
或 PATCH
请求设置为使 roles
字段为整数,eve-sqlalchemy
会提示self.driver.app.config['SOURCES']
中不存在 userroles
关联表。虽然我可以进行这些更改(即将 userroles
表设为声明性 ORM 并将其注册到装饰器),但我不确定这是否是正确的方法。
总而言之,eve-sqlalchemy
希望我如何POST
具有角色
列表的用户
,或PATCH
用户的现有角色?
from eve import Eve
from eve.utils import config
from sqlalchemy import create_engine, Table, Column, String, Integer, ForeignKey, func, DateTime
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship, sessionmaker
from eve_sqlalchemy.decorators import registerSchema
from eve_sqlalchemy import SQL
from eve_sqlalchemy.validation import ValidatorSQL
ID_FIELD = 'id'
SQLALCHEMY_DATABASE_URI = 'sqlite:////tmp/eve-sqla-test.db'
config.ID_FIELD = ID_FIELD
config.ITEM_LOOKUP_FIELD = ID_FIELD
Base = declarative_base()
userroles_table = Table('userroles', Base.metadata,
Column('user_id', Integer, ForeignKey("users.id"), primary_key=True),
Column('role_id', Integer, ForeignKey("roles.id"), primary_key=True)
)
class CommonColumns(Base):
__abstract__ = True
_created = Column(DateTime, default=func.now())
_updated = Column(DateTime, default=func.now(), onupdate=func.now())
_etag = Column(String(40))
class Role(CommonColumns):
__tablename__ = 'roles'
id = Column(Integer, primary_key=True, autoincrement=True)
role = Column(String, unique=True, nullable=False)
class User(CommonColumns):
__tablename__ = 'users'
id = Column(Integer, primary_key=True, autoincrement=True)
login = Column(String, unique=True, nullable=False)
roles = relationship("Role", backref="users", secondary=userroles_table)
def create_entries():
'''Creates test entries for querying with eve'''
engine = create_engine(SQLALCHEMY_DATABASE_URI)
Base.metadata.bind = engine
Base.metadata.create_all()
SessionMaker = sessionmaker(bind=engine)
s = SessionMaker()
u1 = User(login='user1')
u1.roles.append(Role(role='admin'))
u2 = User(login='user2')
u2.roles.append(Role(role='user'))
s.add_all((u1, u2))
s.commit()
def run():
'''Runs the eve server'''
for table in (User, Role):
registerSchema(table.__tablename__)(table)
users = User._eve_schema[User.__tablename__]
users.update({
'item_methods': ['GET', 'PATCH', 'DELETE'],
'resource_methods': ['GET', 'POST'],
})
roles = Role._eve_schema[Role.__tablename__]
roles.update({
'resource_methods': ['GET', 'POST'],
})
DOMAIN = {
'users': users,
'roles': roles,
}
SETTINGS = {
'SQLALCHEMY_DATABASE_URI': SQLALCHEMY_DATABASE_URI,
'SQLALCHEMY_TRACK_MODIFICATIONS': False,
'ID_FIELD': ID_FIELD,
'ITEM_LOOKUP_FIELD': ID_FIELD,
'DOMAIN': DOMAIN,
}
app = Eve(validator=ValidatorSQL, data=SQL, settings=SETTINGS)
db = app.data.driver
Base.metadata.bind = db.engine
db.Model = Base
app.run(debug=True)
if __name__ == '__main__':
'''Test area'''
#create_entries()
run()
import json
import requests
u4 = {
'login': 'user4',
}
# users get works
r = requests.get('http://localhost:5000/users')
print(r.text)
# user creation works
r = requests.post('http://localhost:5000/users', json=u4)
print(r.text)
# roles get works
r = requests.get('http://localhost:5000/roles')
print(r.text)
# user creation with roles fail
u5 = {
'login': 'user5',
'roles': [1,]
}
r = requests.post('http://localhost:5000/users', json=u5)
print(r.text) # {"_issues": {"roles": ["field 'roles' could not be coerced", "must be of integer type"]}, "_status": "ERR"}
# user patch with role fails
r = requests.get('http://localhost:5000/users/1')
patch_headers = {"If-Match": r.json()['_etag'], 'Content-type': 'application/json; charset=utf-8'}
r = requests.patch('http://localhost:5000/users/1', headers=patch_headers, json={'roles': [1,]})
print(r.text) # {"_issues": {"roles": ["field 'roles' could not be coerced", "must be of integer type"]}, "_status": "ERR"}
最佳答案
我最终做的是:
userroles_table
从表转换为声明性类 UserRole
。eve_sqlalchemy
注册 UserRole
UserRole
添加到 DOMAIN
。然后可以通过新的资源端点user_roles
直接查询或修改关联表。 eve_sqlalchemy
似乎在生成架构时隐藏了外键,因此包含与外键的关系非常重要。
关于python - 如何使用 eve-sqlalchemy 更新项目关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42373208/
我正在为生产设置一个 Eve 实例,想知道 Eve 的“首选生产设置”是什么——如果有的话。uWSGI 似乎工作得很好。Gunicorn 与标准 Flask 配合得很好——但对于 Eve 来说并不那么
我想在 mongoDB 中导入图像以及任何字典。字典应该提供图像标签,在我定义架构的那一刻我不知道其中的类型、数字和名称。 我试图在前夕添加一本字典但没有成功: curl -F"attr={\"a\"
我用这个模式定义了一个资源 # 'people' schema definition 'schema'= { 'firstname': { 'type': 'string',
在我的应用程序中,MongoDB 集合需要由服务器端脚本作业更新(即:每 30 分钟从其他 API 抓取/拉取的 cron 作业)。我真正想做的是对 MongoDB 集合进行更新,但让数据根据架构进行
所以我们有简单的.eve 和.adam 文件,compiled ASL ,以及 boost 和 adobe 所需的所有内容。我们需要一个跨平台功能来渲染我们的布局,并在我们的平台上作为真实窗口移动(我
我最近开始关注 Eve。 我读过夜install guide并成功导入。 然后,我尝试了 quick start guide ,并对 settings.py 进行了一些更改。当我尝试运行 run.py
我正在尝试使用 Eve 为简单的项目列表提供 RESTful API。 我想使用 1)一个 HTTP 请求来创建一个列表(可能带有初始项目),2)一个 HTTP 请求来添加一个项目(一个常见操作),3
我有包含嵌入图像列表的项目端点。该方案如下所示: _schema = { 'name': required_string, # group name 'description': {
我有一个文档,其中用户有 2 个地址,如下所示。我将如何在 python-eve 中为此创建模式? 此外,我将如何创建 API 请求以允许用户仅更新邮政编码。他们是否必须重新发布整个文档? {
有什么方法可以返回字段包含某些值的项目?例如。 GET /people?contains="foo" 返回名称中包含“foo”一词的所有人员。 提前致谢 最佳答案 您可以使用 mongodb $reg
为了保护我的公共(public) Eve REST API,我希望避免类似 '{"_status": "ERR", "_error": {"code": 422, "message": "Insert
我正在尝试设置 Python-Eve。 Python-Eve Installation Guide 我已完成以下步骤: C:\Users\Ari\Desktop\rizzla>python -m pi
我有一个基本模式,我正在弄乱它,看看 eve 是否适合我的需要。我的问题是我是否可以通过使用方法为字段设置默认值,并且使用参数会很棒,尽管我怀疑这是可能的。 类似于: from utils impor
我正在尝试为架构 A 中的文档创建 on_insert 事件 Hook ,对架构 B 中的文档调用 eve 的 patch_internal 。 由于触发事件 Hook 的请求是 A 的 POST,因
我用 Eve 和 Python 构建了一个简单的 REST api。 from flask import redirect, send_from_directory, render_template
我创建了一个像下面这样的授权 token 类,我使用 self.set_request_auth_value(user['_id']) 来设置这个请求的用户,在一些我想访问这个的钩子(Hook)中用户
我在对包含连字符的元素执行获取请求时收到 404。我正在运行 python-eve API 框架。 $ curl -i http://api/words/apple HTTP/1.0 200 OK $
我有一个名为 Case 的 mongo 集合,其中包含以下记录: { _updated: "Tue, 26 Jul 2016 10:47:34 GMT", user_id: "rona
Python eve 到目前为止对于所有用例来说看起来都非常好,除了一个客户端在资源上分页并且同时更新了一些对象的情况,我们可以在分页时进行快照或任何其他处理方式吗情况如何? 流程就像 1. GET
如何返回按日期或日期间隔过滤的项目?我正在根据 eve 的 documentation 中的过滤示例尝试类似的操作: /records/?where={"date": {"$gte": "2016-1
我是一名优秀的程序员,十分优秀!