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.
ハードコーディングされた「last_name」の代わりにフィールド名を渡すことは可能ですか?
for item in queryset: to_json.append(item.last_name)
できるよ:
for item in queryset: to_json.append(getattr(item, 'last_name'))
これにより'last_name'、ハードコードされた文字列の代わりに変数にすることができます。
'last_name'