is not allowed to connect tothis mmysql server 阿里云上安装的mysql,发现用本地电脑的navicat链接不上。通过了解知道了原因,小二在此写了一篇,省的以后自己在碰到。 错误如图。 mysql -u root -p 登录到mysql中。 [root@ ...
分类:
数据库 时间:
2020-06-26 21:56:10
阅读次数:
64
from django.db.models import F, Q, Max, Min, Avg, Count from django.http import HttpResponse from django.shortcuts import render, redirect from polls. ...
分类:
其他好文 时间:
2020-06-26 16:11:42
阅读次数:
45
错误信息: errorC4996: 'AVStream::codec': 被声明为已否决 解决方法: ...
分类:
其他好文 时间:
2020-06-25 13:52:43
阅读次数:
39
在.htaccess中修改(如果是框架,则在public下的.htaccess) <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine on RewriteCond %{REQUEST_FILENAME} ...
分类:
Web程序 时间:
2020-06-24 17:47:41
阅读次数:
63
后台代码: url::: url(r'^echo_cc/(?P<userid>[0-9]+)/(?P<sendid>[0-9]+)$', views.echo_c, name='echo')views代码::: from django.shortcuts import renderfrom dweb ...
分类:
Web程序 时间:
2020-06-23 18:41:33
阅读次数:
82
Django rest framework(5) 解析器 解析器 (1)api/urls.py # api/urls.py from django.urls import path,re_path from .views import UserView,PaserView urlpatterns = ...
分类:
其他好文 时间:
2020-06-22 15:02:05
阅读次数:
45
商品模块 首页index--view from django.shortcuts import render # 类视图 from django.views.generic import View from .models import GoodsType, IndexGoodsBanner, In ...
分类:
其他好文 时间:
2020-06-22 01:41:17
阅读次数:
49
1.轮播图效果 1.在后端开发获取banner的api: 1.在后端项目NewCenter/apps/user_operations/views.py中开发获取片区banner图的视图: from django.shortcuts import render,HttpResponse from re ...
分类:
移动开发 时间:
2020-06-21 09:56:16
阅读次数:
102
项目url: path('', include(('app01.urls', 'wdc'), namespace='wdc')), 应用url: path('<int:www>/', views.show, name='show'), 视图: def show(request, www): retu ...
分类:
Web程序 时间:
2020-06-20 18:57:31
阅读次数:
80
一.面向连接的套接字Socket通信工作流程 为了实现服务器与客户机的通信,服务器和客户机都必须建立套接字。服务器与客户机的工作原理可以用下面的过程来描述。 1.服务器先用 socket 函数来建立一个套接字,用这个套接字完成通信的监听。 2.用 bind 函数来绑定一个端口号和 IP 地址。因为本 ...
分类:
其他好文 时间:
2020-06-20 13:39:37
阅读次数:
54