码迷,mamicode.com
首页 >  
搜索关键字:rquest request    ( 19808个结果
Postman简单使用
前言 这次没有前言,就是简单讲一下Postman的基础使用。 Postman使用教程 首先新建文件目录,输入目录名称(Name)和描述(Description,这个可以不输,但是添加会便于以后识别使用),然后create。 然后在新建的目录点击右键,选择add request创建接口文件,在弹出的窗 ...
分类:其他好文   时间:2021-02-25 11:51:13    阅读次数:0
后端接收前端传的数据方式
1. get方式获取: res = request.GET.get("name", " ") GET提交,请求的数据会附在URL之后(就是把数据放置在HTTP协议头中),以?分割URL和传输数据,多个参数用&连接 2. 以表单方式传数据 name = request.POST.get("name", ...
分类:其他好文   时间:2021-02-23 14:24:39    阅读次数:0
React + axios 使用
1. 简单封装使用 创建一个request组件来定义全局url import axios from 'axios'; export const newVar = axios.create({ baseURL:"http://127.0.0.1:8080", timeout: 5000 }) 切记这里 ...
分类:移动开发   时间:2021-02-23 14:10:47    阅读次数:0
Resquest和response对象
Request对象:接?封装了客户请求信息,如客户请求?式、参数、客户使?的协议、以 及发出请 求的远程主机信息等, 其主要?法: String getParamter(String paramName);//获取请求参数 String[] getParamterValues(String para ...
分类:其他好文   时间:2021-02-23 14:10:28    阅读次数:0
Django-退出登录功能
1、新增url urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^login/', views.login), url(r'^login_action/', views.login_action), url(r'^event_manag ...
分类:其他好文   时间:2021-02-22 11:56:48    阅读次数:0
.Net Core 处理跨域问题Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource
网页请求报错: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. ...
分类:数据库   时间:2021-02-20 12:31:09    阅读次数:0
使用http模块构建一个服务器
代码如下: const http = require('http'); /* request 获取url传来的信息 response 给浏览器的响应信息 */ http.createServer(function (request, response) { // 设置响应头 response.wri ...
分类:Web程序   时间:2021-02-20 12:20:56    阅读次数:0
【技能】系统吞吐量
一、受影响因素 request对CPU的消耗 外部接口、IO等 结论:单个reqeust 对CPU消耗越高,外部系统接口、IO影响速度越慢,系统吞吐能力越低,反之越高。 二、重要参数 QPS(TPS) 定义:每秒钟request/事务 数量,,,,tps每秒处理事务数量,qps每秒处理请求数量 TP ...
分类:其他好文   时间:2021-02-20 12:03:29    阅读次数:0
获取cookie的两种方式和session共享解决方案
@RequestMapping("/getCookie") public String getCookie(@CookieValue("name")String name, HttpServletRequest request) { // 方式一: 通过request获取Cookie数组,然后循环 ...
分类:其他好文   时间:2021-02-19 13:51:17    阅读次数:0
jsp大文件(视频)上传分享
javaweb上传文件 上传文件的jsp中的部分 上传文件同样可以使用form表单向后端发请求,也可以使用 ajax向后端发请求 1.通过form表单向后端发送请求 <form id="postForm" action="${pageContext.request.contextPath}/Uplo ...
分类:Web程序   时间:2021-02-19 13:43:48    阅读次数:0
19808条   上一页 1 ... 20 21 22 23 24 ... 1981 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!