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.
也许有人可以展示这样一个任务的例子,或者指定在哪里看。
我建议看一下Joel Hooks 给出的例子。
为此下载DjangoAMF。
将amf 中间件添加到settings.py中的中间件列表中。
要进行身份验证,您只需对来自amf.django的视图使用@permission_required装饰器
并将其添加到您的settings.py
AMF_AUTH_FUNC = 'amf.django.authenticate'
它在集成 Flex 和 DJango 时进行了测试。有关更多详细信息,请访问DjangoAMF。