我需要返回产品细节的响应,所以我使用HttpResponseRedirect和反向。它需要app_name:name,所以我尝试了如下所示,但是我得到了错误:
django.urls.exceptions.NoReverseMatch: Reverse for 'product' not found. 'ProductViewSet' is not a valid view function or pattern name.
这是我的看法:
@api_view(['POST'])
@permission_classes([IsAuthentica
PythonAnywhere在/blog上提供了NOREVERSEMATCH,但本地主机工作得很好。 我已经重新保存了这个项目,并将其再次提交给GitHub,同时在PythonAnywhere上拉出它。但还是不起作用。我试图重新加载它,但仍然在做同样的事情。 NoReverseMatch at /blog/
Reverse for 'profile' with arguments '('',)' not found. 1 pattern(s) tried: ['user\\/(?P<username>[^/]+)\\/pro
如果urls.py和模板中没有错误,什么会导致NoReverseMatch错误?
看看urls.py:
website.urls:
from django.conf.urls.defaults import *
urlpatterns = patterns('',
url(r'^$','base.views.index', name='index'), # works fine
(r'^accounts/$', include('auth.urls')),
)
au
我使用的是django 1.5.1和django注册1.0。
我收到一个错误:
NoReverseMatch at /accounts/password/reset/
Reverse for 'django.contrib.auth.views.password_reset_done' with arguments '()' and keyword arguments '{}' not found.
Request Method: GET
Request URL: http://localhost:8000/accounts/pas
我在我的URL中为段塞编写了一个自定义字段验证器(为一种模型SLUG_REGEX = '[-a-zA-Z0-9_.]+$'接受段塞中的时间段):
def validate_my_slug(value):
my_slug_re = re.compile(settings.SLUG_REGEX)
if not my_slug_re.match(value):
raise ValidationError(
_('Slugs must consist of letters, numbers, '
当我单击按钮并从文本字段获取产品ID值时,当用户单击submit时,它应该被重定向到产品视图,我面临的问题是,我有一个小的模式表单弹出。
操作部分中的问题--它需要一个主键--甚至在主页面午餐之前就需要一个主键,并且它显示了下面的错误
NoReverseMatch at /products all
Reverse for 'ProductDetail2' with arguments '('',)' not found. 1 pattern(s) tried: ['ProductDetail2/(?P<pk>[^/]+)$
我正在从python2.5迁移到python2.7,并且遇到了数据库索引的问题。主页是正确生成的,但我无法对数据库执行任何操作(添加条目),否则会出现以下错误:
TemplateSyntaxError at /new
Caught NoReverseMatch while rendering: Reverse for 'views.edit' with
arguments '('',)' and keyword arguments '{}' not found.
Request Method: GET
Exception
我正在关注Corey Schafer视频讲座>>密码重置电子邮件
urls.py
from django.contrib import admin
from django.contrib.auth import views as auth_views
from django.urls import path, include
from users import views as user_views
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
突然,我创建新帐户的表单停止了working..the错误,出现的错误是
NoReverseMatch at /profile/create/
NoReverseMatch at /profile/create/
Reverse for 'None' with arguments '()' and keyword arguments '{}' not found.
Request Method: POST
Request URL: http://visionsofearth.co.uk/profi
我正在尝试测试某个模型的某个实例是否会引发两个异常中的一个,但我不知道如何让它工作。这就是我所拥有的:
模型
class AvailablePermissions(models.Model):
# Main Checkbox.
category = models.CharField(
max_length=100,
)
# Checkboxes under Main Checkbox.
subcategory = models.CharField(
max_length=100,
)
# The view