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.
class A(ModelResource): Meta: resource_name = 'urlA' print helloA class B(ModelResource): Meta: resource_name = 'urlB' print helloB
当我访问 /urlA 时,我会打印出 helloA 和 helloB。我只期待helloA。这是怎么回事?