码迷,mamicode.com
首页 >  
搜索关键字:mime    ( 1713个结果
初探nginx
nginx 简介 nginx概述 nginx是一款轻量级的Web服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,在BSD-like 协议下发行。其特点是占有内存少,并发能力强,事实上nginx的并发能力在同类型的网页服务器中表现较好。 nginx 作为服务器 nginx作为负载均衡 ...
分类:其他好文   时间:2020-11-30 16:09:36    阅读次数:9
16.python邮件发送
1、SMTP(Simple Mail Transfer Protocol)即简单邮件传输协议它是一组用于由源地址到目的地址传送邮件的规则,由它来控制信件的中转方式。 2、smtplib就是对smtp的一种简单封装 3、基于文本邮件的发送 # 实现对邮件进行发送 import smtplib #ema ...
分类:编程语言   时间:2020-11-26 14:28:24    阅读次数:5
技术点12:文件的上传和下载
文件的上传和下载 一、文件的上传介绍(*****重点) 步骤: 1、要有一个 form 标签,method=post 请求 2、form 标签的 encType 属性值必须为 multipart/form-data 值 3、在 form 标签中使用 input type=file 添加上传的文件 4 ...
分类:Web程序   时间:2020-11-19 12:05:08    阅读次数:15
文件上传漏洞之MIME类型过滤
上传的时候修改Content-Type为image/jpeg等程序指定的类型即可。 修改为: 使用蚁剑连接测试 ...
分类:Web程序   时间:2020-11-11 16:31:43    阅读次数:14
python邮件发送-smtplib
import smtplib from email.mime.text import MIMEText from email.header import Header # 第三方 SMTP 服务 mailserver = "***" # 设置服务器 username_send = "***" # 用 ...
分类:编程语言   时间:2020-11-07 16:31:56    阅读次数:21
111
import osimport smtplibfrom email.mime.text import MIMETextfrom email.header import Headersender = ' 'receiver = 'i 'smtpObj = smtplib.SMTP()smtpObj.c ...
分类:其他好文   时间:2020-11-07 16:03:50    阅读次数:15
Nodejs koa2读取服务器图片返回给前端直接展示
参考:https://blog.csdn.net/lihefei_coder/article/details/105435358 const fs = require('fs'); const path = require('path'); const mime = require('mime-ty ...
分类:Web程序   时间:2020-11-07 16:00:29    阅读次数:27
python+requests+unittest 搭建接口自动化测试框架(六)
封装几个常用的类 configEmail.py import os import smtplib import base64 from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart cla ...
分类:编程语言   时间:2020-11-04 17:49:23    阅读次数:20
Web项目 大文件上传解决方案(500M以上)
1、介绍enctype enctype 属性规定发送到服务器之前应该如何对表单数据进行编码。 enctype作用是告知服务器请求正文的MIME类型(请求消息头content-type的作用一样) 1、1 enctype的取值有三种 值 描述 application/x-www-form-urlenc ...
分类:Web程序   时间:2020-10-31 01:23:03    阅读次数:33
nginx基本配置
1 worker_processes 2; 2 events { 3 worker_connections 1024; 4 } 5 http { 6 include mime.types; 7 default_type application/octet-stream; 8 #upstream配置被 ...
分类:其他好文   时间:2020-10-22 23:03:13    阅读次数:20
1713条   上一页 1 2 3 4 5 6 ... 172 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!