response.setHeader("Cache-Control","no-cache"); This is used to prevent the browser from caching your dynamic content generated by a JSP or Servlet. Y ...
分类:
系统相关 时间:
2021-03-17 14:45:16
阅读次数:
0
1. 先注册(https://mp.weixin.qq.com/wxopen/waregister?action=step1) 2.登录(https://mp.weixin.qq.com/) 3.依据发布流程填写相关信息(在小程序开发工具项目填写 对应的小程序 appid )记得绑定开发者,管理者 ...
分类:
微信 时间:
2021-03-17 14:09:22
阅读次数:
0
基础 基础语法 $(selector).action()$ 文档就绪事件 <script> $(document).ready(function(){ // 开始写 jQuery 代码... }); //简洁写法 $(function(){ // 开始写 JQuery 代码 }) </script> ...
分类:
Web程序 时间:
2021-03-16 13:49:39
阅读次数:
0
在动态页面语言中(如jsp),js变量赋值时常会用到EL表达式,而当值含义单引号或双引号时,就会解析出错。 解决方案: 先翻译为编码形式,然后解码(目前最简易方案) var name = unescape('${name.replaceAll("\'","%27").replaceAll("\"", ...
分类:
Web程序 时间:
2021-03-15 10:40:53
阅读次数:
0
https://blog.csdn.net/qq_35140728/article/details/77248281 1.到http://www.igniterealtime.org/projects/openfire/plugins.jsp下载一个插件REST API。这个插件的作用就是允许程序设 ...
分类:
Web程序 时间:
2021-03-12 12:32:39
阅读次数:
0
html构造表单 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <form method="post" action="upload_file.php" enctype="mul ...
分类:
Web程序 时间:
2021-03-11 10:30:42
阅读次数:
0
认识JSP与JSP的简单运行原理 什么是JSP JSP(全称为Java Server Page),是sun公司为主导创建的一种动态网页技术标准,主要的目的就是将标识逻辑从servlet中分离出来 它实现了Html语法中可以嵌入java编码的扩展(以 <%, %>形式)。JSP与Servlet一样,是 ...
分类:
Web程序 时间:
2021-03-10 13:20:52
阅读次数:
0
在JSP页面头部添加如下代码: <% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.get ...
分类:
Web程序 时间:
2021-03-10 13:06:37
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>登录注册</title> </head> <body> <h1>注册</h1> <!--表单form action:表单提交的位置,可以是网站,也可以是一个请求 ...
分类:
其他好文 时间:
2021-03-10 12:58:49
阅读次数:
0
在selenium中,有些操作是需要靠鼠标来实现的,如鼠标的左键单、双击,右键单、双击、鼠标的悬停、拖拽等等。 在python中,若想实现鼠标操作,需要导入action_chanins模块:from selenium.webdriver.common import action_chains 导入a ...
分类:
其他好文 时间:
2021-03-09 13:21:32
阅读次数:
0