开发者问题收集
未捕获 TypeError:无法读取未定义的属性(读取“params”)无法导航到 id,有人能帮忙吗?我正在使用 django 作为后端,使用 react 作为前端class ArticleDetail extends React.Component{state={article:{}}componentDidMount(){const id = this.props.match.params
我是 javascript 新手。我试图在加载时弹出一个消息框。由于我是初学者,我从互联网上复制了代码,只是想看看它是如何工作的,但出于某种原因,弹出窗口没有出现。我知道代码没有错,因为它在视频中运行正常。调用方法有点不同,因为我使用的是 django。控制台错误auto.js:6 Uncaught TypeError: Cannot read property 'style' of nullht
当尝试在 Django 管理站点中提交模型表单 (/add/) 时,我收到以下错误:TypeError 类型为“int”的对象没有 len()Environment:Request Method: POSTRequest URL: http://localhost:8000/admin/app/card/add/Django Version: 3.1.4Python Version: 3.8.6I
我正在编写一个 API 来接受和保存用户个人资料信息。总共我想接受来自用户的 5 个参数,如下所示。{"first_name":"","last_name":"","email":"","password":"","profile_picture":""}在这 5 个参数中,first_name、last_name、email和password是必需的,而profile_picture是可选的。在
我正在使用 react Js 将图像上传到 django restframework。在这里我使用 fetch API 发送发布请求。Eapp.jsximport React, { Component } from 'react';class Eapp extends Component {constructor(props){super(props);this.state = {profileP
我可以使用 SQLite 数据库运行 Django 1.11。但是我遇到了 MSSQL Server 错误。除了 settings.py 文件之外,我没有修改任何东西。它显示 ImproperlyConfigured:不支持 Django 1.11。以下是我的配置:Settings.pyDATABASES = {'default': {'ENGINE': 'django_pyodbc','HOST
使用 django。我有以下模型:class Postagem(models.Model):id = models.AutoField(primary_key=True, editable=False)descricao = models.CharField(max_length=50)area = models.ForeignKey('core.Area', null=True)user = m
我正在使用 Django,在运行使用 Django 模型的 Python 脚本时遇到问题我正在使用的脚本从 api 获取数据并将其加载到我的数据库中,但是,我在尝试运行它时收到 TypeError:>>> exec(open('load_from_api.py').read())Traceback (most recent call last):File "C:\Program Files (x8
我正在尝试安装现有 Django 项目所需的所有模块。当我运行pip install -r requirements.txt时,我收到以下错误:ERROR: Could not find a version that satisfies the requirement scipy==1.5.3ERROR: No matching distribution found for scipy==1.5.
我无法使用docker-compose up命令运行我的 Django 和 MySql 应用程序。我不知道如何从 Django 项目设置中配置数据库的主机参数。之前为其他应用程序配置相同的参数时,它运行良好。我不明白这次到底出了什么问题。settings.pyDATABASES = {'default': {'ENGINE': 'django.db.backends.mysql','NAME':
我有一个设置如下的 django 项目:myapp.models.pyfrom django.db import modelsclass BaseModel(models.Model):id = models.IntegerField(primary_key=True)created = models.DateTimeField(auto_now_add=True)modified = model
我希望用户能够记录他们执行的操作。我按类别对操作进行分组,然后使用两个选择菜单和 JS 仅向用户显示他们所选类别的操作。还有一个数量输入,它根据所选操作生成。我的问题是,当我提交表单时,我收到错误:未捕获的 TypeError:无法将属性“onchange”设置为 null选择框和 JS 实现的功能在提交表单之前有效。index.jsdocument.addEventListener("DOMCo
我的项目名称 resume我想将 bootstrap 添加到我的项目中首先我将资产文件复制到名为 resume 的项目子文件夹中 =>静态assests 文件- resume->resume/static然后我在设置 .pySTATIC_DIR = BASE_DIR / 'resume/static'STATIC_ROOT = BASE_DIR / 'static'STATIC_URL = '/s
尝试在我的 django 项目中向 html 页面添加滑块,但 css 和 javascript 未加载。因此,滑块不是真正的滑块(即滑动的图像),而是一条垂直的图片线。这些是我在浏览器控制台中收到的错误Failed to load resource: the server responded with a status of 404 (Not Found)slider.js:1 Uncaught
我试图在我的 html 表中应用 jQuery Datatable 函数,该表在我的表的第二行包含另一个子表。我在浏览器的控制台中收到以下错误:Uncaught TypeError: Cannot set property '_DT_CellIndex' of undefined当我没有填充任何数据的空表时,数据表工作正常,而当我上传数据时数据表无法正常工作。我很困惑这是怎么回事?{% exten