码迷,mamicode.com
首页 >  
搜索关键字:url    ( 44082个结果
Window open() 方法打开一个新的浏览器窗口或查找一个已命名的窗口。新弹窗。
语法 window.open(URL,name,specs,replace) 参数说明 URL 可选。打开指定的页面的URL。如果没有指定URL,打开一个新的空白窗口 name 可选。指定target属性或窗口的名称。支持以下值: _blank - URL加载到一个新的窗口。这是默认 _parent ...
分类:Windows程序   时间:2021-02-10 13:14:19    阅读次数:0
maven 项目定义的repositories 不能工作可能的原因
主要原因是自己为了下载加速配置了maven settings 的加速,但是问题来了,镜像使用了* 现象 自己项目配置的repositories 不能工作了 参考配置 settings.xml 加速 <mirror> <id>nexus-tencentyun</id> <mirrorOf>*</mir ...
分类:其他好文   时间:2021-02-09 12:41:48    阅读次数:0
SpringMVC
SpringMVC的执行流程 简要分析执行流程 DispatcherServlet表示前端控制器,是整个SpringMVC的控制中心。用户发出请求,DispatcherServlet接收请求并拦截请求。 我们假设请求的url为 : http://localhost:8080/SpringMVC/he ...
分类:编程语言   时间:2021-02-09 12:30:34    阅读次数:0
maven镜像地址
<mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mi ...
分类:其他好文   时间:2021-02-09 12:03:35    阅读次数:0
Defining RESTful Routes(CRUD operations)
。 const methodOverride = require('method-override') const { v4: uuid } = require('uuid'); //For generating ID's // To 'fake' put/patch/delete request... ...
分类:其他好文   时间:2021-02-09 11:57:54    阅读次数:0
Jenkins 部署项目出现 Failed to connect to repository : Command "git ls-remote XXX
Jenkins 部署项目出现 Failed to connect to repository : Command "git ls-remote XXX 表示为,Jerkins无法连接到你输入的Repository URL的 Git仓库…… 怎么办呢? 试了很多方法: 1、在git仓库里面配置公钥、在 ...
分类:其他好文   时间:2021-02-08 12:50:48    阅读次数:0
layui关闭弹窗刷新页面
layer.open({ type: 2, area: ['800px','750px'], fix: false, //不固定 maxmin: true, shade: 0.3, title: "标题", content: url, btn: ['关闭'], // 弹层外区域关闭 shadeClo ...
分类:其他好文   时间:2021-02-08 11:45:34    阅读次数:0
GET与POST
get和post的区别主要有以下几方面: 常规 区别: 1、url可见性: get,参数url可见; post,url参数不可见 2、数据传输上: get,通过拼接url进行传递参数; post,通过body体传输参数 3、缓存性: get请求是可以缓存的 post请求不可以缓存 4、后退页面的反应 ...
分类:其他好文   时间:2021-02-08 11:43:20    阅读次数:0
SpringBoot actuator(自定义端点类)
SpringBoot actuator(自定义端点类) 1、编写自动端点类很简单,只需要在类前面使用@Endpoint注解 EndPoint中id 来表示url路径 2、使用@ReadOperation //显示监控指标 3、使用@WriteOperation //动态修改指标,以post方式修改 ...
分类:编程语言   时间:2021-02-05 10:47:22    阅读次数:0
URL下载资源
public class URLDownload { public static void main(String[] args) throws IOException { URL url=new URL("https://m10.music.126.net/20210204001424/b2ecd ...
分类:Web程序   时间:2021-02-04 12:17:48    阅读次数:0
44082条   上一页 1 ... 37 38 39 40 41 ... 4409 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!