我正在做一个django项目(网站),两个月前我开始编码,在做django项目时,我遇到了一个问题。
事实上,我正在学习如何制作网站,当我登录到admin时,它工作正常,但当我添加产品时,它就会显示
[OperationalError at /admin/products/product/add/
no such table: main.auth_user__old
Request Method: POST
Request URL: http://127.0.0.1:8000/admin/products/product/add/
Django Version: 3.0.6
Exception Type: OperationalError
Exception Value:
no such table: main.auth_user__old
Exception Location: C:\Users\Owner\PycharmProjects\Pyshop\venv\lib\site-packages\django\db\backends\sqlite3\base.py in execute, line 396
Python Executable: C:\Users\Owner\PycharmProjects\Pyshop\venv\Scripts\python.exe
Python Version: 3.8.2
Python Path:
['C:\\Users\\Owner\\PycharmProjects\\Pyshop',
'C:\\Users\\Owner\\AppData\\Local\\Programs\\Python\\Python38-32\\python38.zip',
'C:\\Users\\Owner\\AppData\\Local\\Programs\\Python\\Python38-32\\DLLs',
'C:\\Users\\Owner\\AppData\\Local\\Programs\\Python\\Python38-32\\lib',
'C:\\Users\\Owner\\AppData\\Local\\Programs\\Python\\Python38-32',
'C:\\Users\\Owner\\PycharmProjects\\Pyshop\\venv',
'C:\\Users\\Owner\\PycharmProjects\\Pyshop\\venv\\lib\\site-packages']
Server time: Wed, 27 May 2020 04:31:07 +0000][1]
请帮我做这个
这是这些文件
models.py:
from django.db import models
class Product(models.Model):
name = models.CharField(max_length=255)
price = models.FloatField()
stock = models.IntegerField()
image_url = models.CharField(max_length=2083)
class Offer(models.Model):
code = models.CharField(max_length=10)
description = models.CharField(max_length=255)
discount = models.FloatField(5)
视图.py:
from django.http import HttpResponse
from django.shortcuts import render
def index(request):
return HttpResponse('Hello world')
def new(request):
return HttpResponse('New Products!!!!!!!!!!!!!')
def microsoft(request):
return HttpResponse('microsoft 365')
项目urls.py:
"""pyshop URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.1/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('product/', include('product.urls'))
]
product.url.py:
from django.urls import path
from . import views
urlpatterns = [
path('', views.index),
path('new/', views.new),
path('microsoft/', views.microsoft)
]
以下是这些视图,模型。urls文件请!!!!解决问题
首先检查您的数据库是否有syn,即运行
python manage.py makemigrations
python manage.py migrate
如果这显示了一些错误或不起作用,请尝试删除除< code>__init__之外的所有迁移文件和< code>__pychache__。py并再次运行makemigrations和migrate命令。
仅企业版可用 获取管理员列表接口 创建管理员 删除管理员
我对“ django-admin 启动项目 mysite . ” 命令有问题。当我尝试执行它时,Cygwin向我返回了一个错误: 回溯 (最近一次调用最后): 文件 “/usr/bin/django-admin”, 第 9 行, 在 load_entry_point(“Django==1.10.2”,“console_scripts”, “django-admin”)() 文件“/usr/lib/
问题内容: 删除了对ModelAdmin方法上allow_tags属性的支持。 问题答案: 刚找到答案,使用功能。 在旧代码中,您可以使用: 在新代码中,应使用:
我的Django项目中使用django-revproxy包进行反向代理,代理到我服务器上的SeqeunceServer服务。配置的路由是这样的: 运行之后,结果是可以访问“http://taascr.myddns.me:7253/”页面,但是我里面填写表单提交之后,就显示Page not found,看样子是把我的表单参数加到本地的“127.0.0.1:8000”地址后面了,请问该怎么解决呢? 我
在使用larave-admin做后台时,想在后台管理员admin_users表中添加一个部门字段,该如何操作了,查了好多资料都没找到具体做法。 重新自定义了一个控制器,grid()中写了如下代码,但是并没有生效,列表中也没有部门的标题,需要怎做了,请赐教
主要内容:启动管理界面Django为管理活动提供随时可以使用的用户界面。 我们都知道,管理界面对于一个Web项目是十分重要的。 Django根据您的项目模型自动生成管理界面。 启动管理界面 管理界面依赖于 django.contrib 模块。若需它工作,需要确保一些模块是否导入在 myproject/settings.py 文件中的INSTALLED_APPS和MIDDLEWARE_CLASSES元组。 对于 INST