0
我在使用Python試驗Google App Engine中的查詢。我不能這樣做嗎?動態查詢谷歌應用程序引擎
region = '"Malaysia"'
result = Post.query(Post.page_market.IN([region])).order(Post.created_time)
但如果我這樣做,
result = Post.query(Post.page_market.IN(["Malaysia"])).order(Post.created_time)
的查詢工作。
請幫幫我。謝謝!
我得到了答案,你可以寫這樣的: '市場='馬來西亞,北美.split(',') result = Post.query(Post.page_market.IN(markets))。order(Post.created_time)' 我希望這可以幫助某人 – user2887317