我在根据关系在view_state
中提取用户/视频时遇到问题。
使用Python 2.7
SQLALCHEMY
和CRUD method
Test.py
def test_crud_operations():
api = ConvenienceAPI()
api.create_view_state('module1', 'ack')
api.retrieve_view_state('ack')
api.update_view_state('ack', 'module1')
代码:
#base.py
class View_State(Base):
__tablename__ = 'view_states'
id = Column(Integer, primary_key=True)
timestamp = Column(DateTime, default=datetime.utcnow)
time_update = Column(DateTime, onupdate=datetime.utcnow)
completed = Column(Boolean, default=False) #have to set default
video_id = Column(Integer, ForeignKey('videos.id'))
video = relationship('Video', backref='view_states')
user_id = Column(Integer, ForeignKey('users.id'))
user = relationship('User', backref='view_states')
def __init__(self, video, user):
self.completed = False
self.video = video
self.user = user
def __repr__(self):
return "<View_State(timestamp='%s', time_update='%s', completed='%s', video='%s', user='%s')>" % (self.timestamp, self.time_update, self.completed, self.video, self.user)
#object.py
# View State CRUD
def update_view_state(self, username, videoname):
#update Boolean completed status to 'complete = True'
update_completed = self.session.query(View_State).\
filter(View_State.user.has(User.username == username)).\
filter(View_State.video.has(Video.videoname == videoname)).one()
print 'retrieved from update complete: ', update_completed
if update_completed:
completed = True
temp = update_completed.completed
print 'changed status: ', temp
return update_completed
self.session.commit()
#convenience.py
def update_view_state(self, username, videoname):
user = self.retrieve_user(username=username)
video = self.retrieve_video(videoname)
return super(ConvenienceAPI, self).update_view_state(user, video)
追溯:
InterfaceError: (sqlite3.InterfaceError) Error binding parameter 0 - probably unsupported type. [SQL: u'SELECT view_states.id AS view_states_id, view_states.timestamp AS view_states_timestamp, view_states.time_update AS view_states_time_update, view_states.completed AS view_states_completed, view_states.video_id AS view_states_video_id, view_states.user_id AS view_states_user_id \nFROM view_states \nWHERE (EXISTS (SELECT 1 \nFROM users \nWHERE users.id = view_states.user_id AND users.username = ?)) AND (EXISTS (SELECT 1 \nFROM videos \nWHERE videos.id = view_states.video_id AND videos.videoname = ?))'] [parameters: (<User(username ='ack', firstname ='A', lastname ='cr', email='a@gmail.org', institution='foo', residency_year='None')>, <Video(videoname='module1', length='8.0', url='https://vimeo.com/138326103')>)]
答案 0 :(得分:2)
如果仔细查看回溯消息,则不是发送用户名而是将类作为参数发送,但请尝试将其与字符串匹配。这实际上是你的程序所做的。首先选择用户类和视频类,然后将这些类传递给update_view_state。
如果您更改此行,会发生什么:
return super(ConvenienceAPI, self).update_view_state(user, video)
到
return super(ConvenienceAPI, self).update_view_state(user.username,
video.videoname)
或者您可以更改update_view_state以对该关系进行操作:
filter(View_State.user.has(user == username)).\
filter(View_State.video.has(video == videoname)).one()
哈努哈利