#1.在首页侧边栏创建分类模块地址链接 <a href="javascript:;"><cite>分类管理</cite></a> <a _href="{{ url('admin/cate') }}"><cite>分类列表</cite></a> <a _href="{{ url('admin/cate ...
分类:
其他好文 时间:
2020-12-17 12:11:25
阅读次数:
2
这篇文章记录了我的一些实践。官方文档是 https://docs.microsoft.com/en-us/azure/app-service/tutorial-auth-aad?pivots=platform-linux 案例场景 关键技术 配置前端应用对应的Azure AD application ...
django解决跨域问题 1 使用第三方模块django-cors-headers 1.1 安装 pip install django-cors-headers 1.2 配置 INSTALLED_APPS = [ 'corsheaders', ] MIDDLEWARE = [ 'corsheader ...
分类:
其他好文 时间:
2020-11-23 12:10:55
阅读次数:
6
RabbitMQ : 1.优先级队列 交换机exchange揭秘 direct交换机 (直接交换器) fanout交换机 (广播是式交换器) topic交换机 (主题交换器) headers交换机 (消息体的header匹配) 消息持久化,消息扩容 1. Direct(直接交换器) Exchange ...
分类:
其他好文 时间:
2020-11-19 12:02:00
阅读次数:
4
首先在spiders下,创建muouren.py import scrapy import json import time class MyspiderSpider(scrapy.Spider): name = "muou" def start_requests(self): urls = ['h ...
1. PostMan使用 1. 使用postMan进行请求,记得添加Headers信息 2. 记录一次遇到得小坑,在PostMman请求一个接口信息时候 ResponseVo<XXXXResVo> queryXXXXManage(XXXXReqVo XXXXReqVo); XXXXReqVo对象为 ...
分类:
其他好文 时间:
2020-11-02 10:01:31
阅读次数:
14
.get cookie with your browser then can do WebClient wc = new WebClient(); wc.Headers.Add("referer", "https://www.toutiao.com/"); wc.Headers.Add("cooki ...
分类:
其他好文 时间:
2020-10-31 01:08:29
阅读次数:
23
以ASP.NET Core WebAPI 作后端 API ,用 Vue 构建前端页面,用 Axios 从前端访问后端 API ,包括文件的上传和下载。 准备文件上传的API #region 文件上传 可以带参数 [HttpPost("upload")] public JsonResult uploa ...
分类:
Web程序 时间:
2020-10-31 01:08:12
阅读次数:
31
图书管理前端页面 1.图书管理页面 1.1 http/apis.js 添加后端请求路由 import { get, post, put, del } from './index'// 书籍管理接口export const getBookList = (params, headers) => get( ...
分类:
其他好文 时间:
2020-10-30 12:30:39
阅读次数:
19
在Pre-request Script 中增加代码 可以实现在请求时自动添加Header ,可在Collection中添加 // 添加新 header pm.request.headers.add({ key: 'Accept-Encoding', value: 'gzip' }); // 添加或修 ...
分类:
其他好文 时间:
2020-10-30 12:27:30
阅读次数:
61