上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页
场景:当我们遇到onclick按钮事件时需要按回车执行时就用到了键盘监听事件 例如:<button id="sign_in_button" class="btn btn-lg btn-warning btn-block" style="opacity: 0.9" onclick="sign_in() Read More
posted @ 2019-02-20 08:26 Xcsg Views(2690) Comments(0) Diggs(0) Edit
在类视图中使用为函数视图准备的装饰器时,不能直接添加装饰器,需要使用method_decorator将其转换为适用于类视图方法的装饰器 方法一 方法二: 在路由中导入装饰器并用视图 path('/cartlist',login(CartList.as_view())) Read More
posted @ 2019-02-19 08:27 Xcsg Views(189) Comments(0) Diggs(0) Edit
首先views.py导入from django.shortcuts import renderfrom django.http import HttpResponse,HttpResponseRedirect#导入类视图模块from django.views import View#导入数据库fro Read More
posted @ 2019-02-18 18:22 Xcsg Views(178) Comments(0) Diggs(0) Edit
在Web应用中,通常有一些业务功能模块是在不同的项目中都可以复用的,故在开发中通常将工程项目拆分为不同的子功能模块,各功能模块间可以保持相对的独立,在其他工程项目中需要用到某个特定功能模块时,可以将该模块代码整体复制过去,达到复用。Django的视图编写是放在子应用中的1创建子应用 python m Read More
posted @ 2019-02-17 15:11 Xcsg Views(171) Comments(0) Diggs(0) Edit
思路:(安慰剂按钮)首先当触发按钮时,设置拦截器,启动进度条从0开始到100满(html进度条用数值value来控制,默认为0),设置进度条的配置函数然后在后端返回函数中启动停止精度条的函数,为了保持返回函数和进度条效果的一致性,加入延时,达到线程同步的效果代码如下:首先导入jquery和axios Read More
posted @ 2019-02-16 14:24 Xcsg Views(6873) Comments(0) Diggs(2) Edit
思路:无刷新机制就是不用的刷新动作 ,用前端html语法删除和后端的数据库删,同时删除达到效果 除操作,来实现无刷洗的方法 Read More
posted @ 2019-02-15 13:29 Xcsg Views(248) Comments(0) Diggs(0) Edit
环境:使用cookie存储并且登录时读取cookie读取登录异常1,在后端报错'NoneType' object has no attribute 'split'异常2,触发登录无响应(cookie无法存储)解决思路:编码问题导致,在登录成功时进行对存储的cookie进行编码, 然后在进行展示前读取 Read More
posted @ 2019-02-14 16:16 Xcsg Views(469) Comments(0) Diggs(0) Edit
首先导入jquery和axios包 jquery.ajax axios Read More
posted @ 2019-02-13 18:46 Xcsg Views(1783) Comments(0) Diggs(0) Edit
列表推导式 urllist = ["http://www.zhuangxiule.cn/c{}p{}/".format(i,x) for i in range(16,26) for x in range(0,25)] print(urllist) 字典推导式 cookie = 'sts=0; UM_ Read More
posted @ 2019-02-03 12:05 Xcsg Views(309) Comments(0) Diggs(0) Edit
scrapy windows下出现importError:No module named 'win32api'需安装 pip install pypiwin32 Read More
posted @ 2019-02-02 20:31 Xcsg Views(141) Comments(0) Diggs(0) Edit
上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页