Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のスキーマは、次を使用して dict に変換できますbranch.__dict__
branch.__dict__
branch = BranchIn(name='jfslkjf', regionId='fdfasd')
branchDict = branch.__dict__ branchDict = {'name': 'jfslkjf', 'regionId': 'fdfasd' }
FastAPI で dict オブジェクトをスキーマに再度変換するにはどうすればよいですか