0

添加 'secretballot.middleware.SecretBallotMiddleware'MIDDLEWARE_CLASSES我不断收到以下错误:

Exception Type: NotImplementedError

Exception Location: .../django_secretballot-0.2.3-py2.7.egg/secretballot/middleware.py in generate_token, line 11

任何想法为什么?在此先感谢您的帮助!

4

2 回答 2

3

这个错误的原因是 SecretBallotMiddleware 实际上是一个抽象类(源代码),您需要对其进行子类化或使用已经实现的 SecretBallotIpMiddleware。有关详细信息,请参阅文档部分MIDDLEWARE

于 2013-04-23T21:09:38.057 回答
1

根据docs,您不应该添加secretballot.middleware.SecretBallotMiddleware中间件。

SecretBallotIpMiddleware或中选择SecretBallotIpUseragentMiddleware

于 2013-04-23T21:10:23.510 回答