axios是一个就promise的HTTP库,可以用在浏览器和node.js中 main.js import Vue from 'vue' import axios from 'axios' // 使用拦截器// 添加请求拦截器 axios.interceptors.response.use( re ...
分类:
移动开发 时间:
2021-03-04 13:30:53
阅读次数:
0
Should criminals be punished with lengthy jail terms or re-educated and rehabilitated, using community service programs for instance, before being rei ...
分类:
其他好文 时间:
2021-03-03 12:18:12
阅读次数:
0
// 防盗链监测是根据http请求头参数Referer参数得。 // 所以只有http请求不携带这个参数那么就可以正常访问到图片了。 // 页面添加meta标签<meta name="referrer" content="never">即可解决 // 值需要是never,浏览器都可以兼容,no-re ...
分类:
其他好文 时间:
2021-03-02 12:16:35
阅读次数:
0
关于Redis说点什么,目前都是使用Redis作为数据缓存,缓存的目标主要是那些需要经常访问的数据,或计算复杂而耗时的数据。缓存的效果就是减少了数据库读的次数,减少了复杂数据的计算次数,从而提高了服务器的性能。 一、redis持久化 两种方式 1、redis提供了两种持久化的方式,分别是RDB(Re ...
分类:
数据库 时间:
2021-03-02 12:16:13
阅读次数:
0
系列文章列表,点击展示/隐藏 系列教程一目录:.netcore+vue 前后端分离Demo1Demo2视频教程1视频教程2Code 系列教程二目录:DDD领域驱动设计Demo Code 视频教程 系列教程三目录:Nuxt.js TiBug系统Demo Code 系列教程四目录:VueAdmin 后台 ...
分类:
其他好文 时间:
2021-03-02 12:08:14
阅读次数:
0
It's no good doing sth. 这个 句型其实是一个省 略介词 in 的句型,完整形式是 It's no good in doing sth. 其中, good 是形容词,和介词 in 搭配 ,后面接动名词短语, 表示在做某过程中没有益处。 例句: It's no good read ...
分类:
其他好文 时间:
2021-03-02 12:07:16
阅读次数:
0
链接数据库 public static void main(String[] args) { //简约方式 try { Connection conn = DriverManager.getConnection("jdbc:mysql:/mysql?user=aa"); Statement st = ...
分类:
数据库 时间:
2021-03-02 12:02:39
阅读次数:
0
什么是正则表达式 正则表达式,又称规则表达式。(英语:Regular Expression,在代码中常简写为 regex、 regexp 或 RE),是计算机科学的一个概念。正则表达式通常被用来检索、替换那些符合某 个模式(规则)的文本。正则表达式并不仅限于某一种语言,但是在每种语言中有细微的差别。 ...
分类:
其他好文 时间:
2021-03-02 11:55:25
阅读次数:
0
import requests import re import os from glom import * def get_video(url): requests.packages.urllib3.disable_warnings() session = requests.session() h ...
分类:
其他好文 时间:
2021-03-02 11:50:01
阅读次数:
0
package com.sean.base.threadStudy; import com.sean.base.object01.SimpleDateFormatDemo; import java.text.SimpleDateFormat; import java.util.Date; /** * ...
分类:
其他好文 时间:
2021-03-01 13:10:17
阅读次数:
0