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.
私は自分のリソースでこれをやろうとしています...
thingy = fields.ToOneField(ThingyResource, 'whatzit__thingy')
つまり、fk をトラバースします。モデルに「whatzit」へのfkがあり、「whatzit」モデルには「thingy」へのfkがあります。
その構文は機能していません-これを行う方法はありますか、それとも推奨されていませんか?
または、オブジェクトの uri のリソースをクエリする簡単な方法はありますか?
私はあなたがこれをしたいと思います:
whatzit = fields.ToOneField(WhatzitResource, 'whatzit')
そして、このように脱水します。
def dehydrate(self, bundle): bundle.data['thingy'] = whatzit.thingy return bundle