后端同事提供的接口是get请求,需要通过body传值,在postman里面是可以正常请求的,但是使用axios的时候却参数总是不正确。 后来查了相关文档,get请求是没有请求主体的,axios封装的get请求也不会把主体(body)传给后端,如果需要传递主体的话,就得post请求或者其他。 改成po ...
分类:
移动开发 时间:
2021-05-24 00:28:49
阅读次数:
0
StorageClass 简单学习 学习资料来源 https://www.jianshu.com/p/5e565a8049fc https://zhuanlan.zhihu.com/p/289501984 https://blog.csdn.net/ag1942/article/details/11 ...
分类:
其他好文 时间:
2021-05-24 00:07:25
阅读次数:
0
找了一个不需要验证码登录的网站,康爱多网上药店,第一次研究Python+requests框架实现接口自动化,选择登录-加购-下单-取消订单-删除订单一条业务链五个接口测试,代码如下: import requestsimport time # 登录session = requests.session( ...
分类:
编程语言 时间:
2021-05-23 23:39:42
阅读次数:
0
textview基本属性: text setText 设置文本的内容 textColor setTextColor 设置文本的颜色 textSize setTextSize 设置文本大小 textAppearance setTextAppearance 设置文本的分格,风格定义在res/styles ...
分类:
其他好文 时间:
2021-05-20 17:48:35
阅读次数:
0
题目链接 维护一个区间最小值同时维护一个区间最小值的减法 #include <bits/stdc++.h> using namespace std; const int N = 100010; int a[N]; int n,k; struct node{ int l,r; int v,add; } ...
分类:
其他好文 时间:
2021-05-04 16:06:56
阅读次数:
0
JUC概述 java.util.concurrent 简称juc 线程和进程 进程:一个程序 在操作系统中运行的程序就是进程,比如你的QQ,微信,游戏,ide等等… 一个进程可以包含多个线程,至少包含一个 Java默认有几个线程? 2个, main线程,GC线程(垃圾回收) 线程: 一个进程可以有多 ...
分类:
其他好文 时间:
2021-05-04 16:05:49
阅读次数:
0
方法分组测试 1. 给@Test注解后面加groups参数,如 @Test(groups = "groupa") 2. 可以添加@BeforeGroups和@AfterGroups,来设置在某组方法执行之前/之后要做的事情,如 @BeforeGroups("groupa") 1 import org ...
分类:
其他好文 时间:
2021-05-04 15:52:39
阅读次数:
0
const http=require('http') const fs=require('fs') const path=require('path') const server=http.createServer(function(req,res){ const {url}=req console ...
分类:
Web程序 时间:
2021-05-04 15:44:00
阅读次数:
0
1.首先创建一个自定义View类: public class CustomView extends ViewGroup { private int mleftMargin=20; private int mtopMargin=20; public CustomView(Context context ...
分类:
移动开发 时间:
2021-05-03 12:48:19
阅读次数:
0
post接收字符串 def subscription(request): msg = request.POST.get('msg') # tel_no = request.POST.get('tel_no') # email = request.POST.get('email') # ico_id ...
分类:
Web程序 时间:
2021-05-03 12:45:35
阅读次数:
0