我认为的跨域: 浏览器从一个域名的网页去请求另一个域名的资源时,域名、端口、协议任一不同,都是跨域 跨域相关的报错: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' ...
分类:
其他好文 时间:
2020-05-18 16:55:18
阅读次数:
60
参考博客:https://blog.csdn.net/qq_36982160/article/details/81260273 参考github:https://github.com/ZhaoYukai/HeartRate 如果运行时出现Program type already present: a ...
分类:
移动开发 时间:
2020-05-16 00:43:47
阅读次数:
86
1.就拿简单的登录来说吧,这是开始的代码 @RequestMapping(value="/login")public ModelAndView login(@RequestParam(“loginname”) String loginname,@RequestParam("password") St ...
分类:
其他好文 时间:
2020-05-15 23:00:01
阅读次数:
152
Description: Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible ...
分类:
其他好文 时间:
2020-05-15 00:34:42
阅读次数:
86
axios 异步请求三种方式 1、Content-Type: application/json 后台使用@RequestBody 获取参数 import axios from 'axios' let data = {code:'123',name:'yyyy'}; axios.post(`${thi ...
分类:
移动开发 时间:
2020-05-14 10:35:44
阅读次数:
89
来源:https://segmentfault.com/a/1190000012550346 当出现403跨域错误的时候 No 'Access-Control-Allow-Origin' header is present on the requested resource,需要给Nginx服务器配 ...
分类:
数据库 时间:
2020-05-11 23:20:01
阅读次数:
79
今天在运行程序的时候,一直报“java.lang.TypeNotPresentException: Type javax.xml.bind.JAXBContext not present”的错误, 代码之前一直没有动过,唯一的改变的就是之前用的是jdk8,昨天卸载了jdk8,重装了jdk12。 百度 ...
分类:
编程语言 时间:
2020-05-07 13:26:14
阅读次数:
80
将ArrayList中的元素按照给定字符拼接起来 public static void main(String[] args) { List<String> list = Arrays.asList("nice","to","meet","you"); System.out.println(list ...
分类:
编程语言 时间:
2020-05-07 00:34:55
阅读次数:
81
################################# 2013 新东方 5500 词汇第 1-10 讲 考研学子网 倾情提供 ,更多免费资料在 www.kaoyanxuezi.com!! 1 2013 新东方刘一男 5500 核心词汇 主讲:刘一男 单词 音标 词义 第 1 讲★1. ...
分类:
其他好文 时间:
2020-05-05 12:38:57
阅读次数:
65
Ansible循环语句 1 简介 我们在编写playbook的时候,不可避免的要执行一些重复性操作,比如指安装软件包,批量创建用户,操作某个目录下的所有文件等。正如我们所说,ansible一门简单的自动化语言,所以流程控制、循环语句这些编程语言的基本元素它同样都具备。 在Ansible 2.5以前, ...
分类:
其他好文 时间:
2020-05-02 11:26:05
阅读次数:
52