码迷,mamicode.com
首页 >  
搜索关键字:request processing f    ( 21078个结果
APIView源码分析
from rest_framework.views import APIView url(r'^books/', views.BookView.as_view()), url.py中使用的as_view()是APIView类的as_view方法,使用的还是django原生的当次请求的request对 ...
分类:Windows程序   时间:2020-07-19 23:28:38    阅读次数:94
序列化组件serializer基本使用
1. 序列化组件使用原理 序列化,序列化器会把模型对象转换成字典,经过response以后变成json字符串 反序列化,把客户端发送过来的数据,经过request以后变成字典,序列化器可以把字典转成模型 反序列化,完成数据校验功能 2. 序列化组件serializer的简单使用 写一个序列化类 在类 ...
分类:其他好文   时间:2020-07-19 23:28:00    阅读次数:66
rest_framework请求和响应
请求对象Request from rest_framework.request import Request # 该Request没有继承django原生的HttpRequest REST framework 传入视图的request对象不再是Django默认的HttpRequest对象,而是RES ...
分类:其他好文   时间:2020-07-19 23:27:32    阅读次数:88
用urllib库几行代码实现最简单爬虫
""" 使用urllib.request()请求一个网页内容,并且把内容打印出来。 """ from urllib import request import chardet if __name__ == '__main__': # 有的网站url使用不了 url = "https://www.cn ...
分类:Web程序   时间:2020-07-19 23:19:06    阅读次数:78
Django学习日记-08回顾--温故知新
知识总结回顾: -Ajax全部操作在一个html页面执行,对于之前的Ajax操作中事件的发生于其对于的联系方式相关,思路上首先都在思考编写模板内容部分,然后在是函数的执行 - 使用 id = ‘事件名’ 与其对应的是 <script> $.('# 事件名').click(function() { x ...
分类:其他好文   时间:2020-07-19 15:59:37    阅读次数:61
接口测试2-开发WEB接口
首先要安装flask包: pip install flask 开发一个简单的API接口 # 1. 导入包 from flask import Flask, request # 2. 实例化一个 app = Flask(__name__) # 3. 编写一个接口处理方法 @app.route("/ad ...
分类:Web程序   时间:2020-07-19 15:50:08    阅读次数:65
jsp
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+ ...
分类:Web程序   时间:2020-07-19 11:54:35    阅读次数:94
jsp8
<body> <% request.setCharacterEncoding("utf-8"); String uname = (String) session.getAttribute("uname"); session.setAttribute("uname", uname); Connecti ...
分类:Web程序   时间:2020-07-19 11:54:02    阅读次数:94
Life Cycle Stages of IIS 7.0
Life Cycle Stages The following table lists the stages of the ASP.NET application life cycle with Integrated mode in IIS 7.0. 1.A request is made for ...
分类:其他好文   时间:2020-07-19 00:41:52    阅读次数:70
asp.net core 3.1 Cookie的公共方法
/// <summary> /// 沐雪微淘小程序商城 /// cookie设置 /// </summary> public static class CookieHelper { private static HttpResponse CurrentResponse { get { return ...
分类:Web程序   时间:2020-07-18 22:47:03    阅读次数:172
21078条   上一页 1 ... 58 59 60 61 62 ... 2108 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!