码迷,mamicode.com
首页 >  
搜索关键字:url    ( 44082个结果
使用http模块构建一个服务器
代码如下: const http = require('http'); /* request 获取url传来的信息 response 给浏览器的响应信息 */ http.createServer(function (request, response) { // 设置响应头 response.wri ...
分类:Web程序   时间:2021-02-20 12:20:56    阅读次数:0
sql server出发器 监听数据库
//出发器 ALTER trigger [dbo].[trsx] on [dbo].[T1] for insert as BEGIN DECLARE @URL VARCHAR(1000) set @URL='http://192.168.1.xx/api/blade-meal/meal/menu/g ...
分类:数据库   时间:2021-02-20 12:17:00    阅读次数:0
爬虫之多线程,提高效率
arr = ["http://music.163.com/song/media/outer/url?id=1820550501.mp3", "http://music.163.com/song/media/outer/url?id=1820550501.mp3", "http://music.163 ...
分类:编程语言   时间:2021-02-20 11:52:43    阅读次数:0
tfserving备忘
启动: docker run -p port:8500 -e MODEL_NAME=ground_segmentation --name tfserving-ground-segmentation -e NVIDIA_VISIBLE_DEVICES=1 -v /model_path_in_machi ...
分类:Web程序   时间:2021-02-19 13:47:00    阅读次数:0
scrapy mongo pipeline
import pymongo db_configs = { 'type': 'mongo', 'host': '127.0.0.1', 'port': '27017', "user": "", "password": "", 'db_name': 'spider' } class MongoPipe ...
分类:其他好文   时间:2021-02-19 13:41:33    阅读次数:0
Initialization failed for 'https://start.spring.io' Please check URL, network and proxy settings.
今天新建一个spring web项目,发现报错了。问题如下。 排除了网络问题,找到了解决办法。打开设置,点击check connection 输入 https://start.spring.io 点击OK 成功创建 ...
分类:编程语言   时间:2021-02-19 13:37:10    阅读次数:0
无法启动IIS Express web服务,端口正在使用!
1、 打开你的项目后,在你的UI界面层即窗体界面层上右键点击属性 2、 进入Web,修改项目URl,在路径中将其端口设定为一个其它值。 点击创建虚拟目录,一个难题久迎刃而解啦! ...
分类:Web程序   时间:2021-02-19 13:30:19    阅读次数:0
Python-pip源设置
1、windows10 pip设置目录:C:\ProgramData\pip\pip.ini [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ ←--清华大学源 2、dos命令:pip config --global set ...
分类:编程语言   时间:2021-02-19 13:05:20    阅读次数:0
Apache 禁止或允许固定IP 访问特定目录
注意:下面的内容都是放在虚拟主机的单独配置中,而并非是在httpd.conf 的全局配置中。 禁止访问某些文件/目录 增加Files选项来控制,比如要不允许访问 .inc 扩展名的文件,保护php类库: <Files ~ "\.inc$"> Order allow,deny Deny from al ...
分类:Web程序   时间:2021-02-19 13:02:29    阅读次数:0
Mybatis-01 什么是Mybatis
Mybatis-01 什么是Mybatis 1.简介 1.1 什么是Mybatis MyBatis 是一款优秀的持久层框架 ,它支持定制化 SQL、存储过程以及高级映射。 MyBatis 避免了几乎所有的 JDBC 代码和手动设置参数以及获取结果集。 MyBatis 可以使用简单的 XML 或注解来 ...
分类:其他好文   时间:2021-02-18 13:27:24    阅读次数:0
44082条   上一页 1 ... 35 36 37 38 39 ... 4409 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!