码迷,mamicode.com
首页 >  
搜索关键字:books    ( 912个结果
PAT甲级——A1022 Digital Library
A Digital Library contains millions of books, stored according to their titles, authors, key words of their abstracts, publishers, and published years ...
分类:其他好文   时间:2019-07-25 23:17:32    阅读次数:102
go编程资料库
1、Go语言圣经(中文版) https://books.studygolang.com/gopl-zh/ ...
分类:其他好文   时间:2019-07-24 00:19:40    阅读次数:99
Windows下的Jupyter Notebook 安装与自定义启动
1、Jupyter Notebook 和 pip 为了更加方便地写 Python 代码,还需要安装 Jupyter notebook。 利用 pip 安装 Jupyter notebook。 为什么要使用 Jupyter?参考: https://www.zhihu.com/question/3749 ...
分类:Windows程序   时间:2019-07-23 15:20:57    阅读次数:141
What exactly is the parameter e (event) and why pass it to JavaScript functions?
What exactly is the parameter e (event) and why pass it to JavaScript functions? 问题 Well, when I learned JavaScript, all the books and Internet articl ...
分类:编程语言   时间:2019-07-11 14:29:39    阅读次数:131
.net lambad表达式操作数据库
里主要是将数据库中的常用操作用LAMBDA表达式重新表示了下,用法不多,但相对较常用,等有时间了还会扩展,并将查询语句及LINQ到时也一并重新整理下: 1.select语句:books.Select(p=>new { p.Title, p.UnitPrice, p.Author});//需用匿名方式 ...
分类:数据库   时间:2019-07-10 11:03:49    阅读次数:177
rest-framework之权限组件
权限介绍 只用超级用户才能访问指定的数据,普通用户不能访问,所以就要有权限组件对其限制 源码部分 权限类: 视图类: 如果是普通用户登录返回的是个英文错误信息,要把他转换成中文 只要在了方法上面价格message 需要继承 局部使用 全局使用 因为是个列表,直接后面加上 局部禁用 ...
分类:其他好文   时间:2019-07-04 00:45:05    阅读次数:133
序列化组件
序列化组件 django自带的有序列化组件不过不可控不建议使用(了解) from django.core import serializers class Books(APIView): def get(self,request): response = {'code':100,'msg':'查询成 ...
分类:其他好文   时间:2019-07-03 09:13:43    阅读次数:90
django中cbv源码和restful规范
1 django 请求声明周期 -先进入实现了wsgi协议的web服务器 》进入django 》中间件 》路由 》视图 》取模板,取数据,用数据渲染模板 》返回模板的字符串 》在浏览器上看到页面了 2 开发模式(前后端分离和前后端不分离) -前后端不分离项目 -前后端分离项目 前端和后端通过json ...
分类:其他好文   时间:2019-07-02 19:10:50    阅读次数:91
APIView源码,Requset的源码简单分析
下载drf 使用 drf是基于cbv view的封装,所以必须写cbv 第一步:再写视图,必须写cbv from rest_framework.views import APIView class Books(APIView): pass -在setting中配置 INSTALLED_APPS= [ ...
分类:Windows程序   时间:2019-07-02 00:28:28    阅读次数:169
scrapy工具创建爬虫工程
1、scrapy创建爬虫工程:scrapy startproject scrape_project_name >scrapy startproject books_scrapeNew Scrapy project 'books_scrape', using template directory 's ...
分类:其他好文   时间:2019-06-29 10:39:04    阅读次数:96
912条   上一页 1 ... 16 17 18 19 20 ... 92 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!