Flask六行代码运行 # 六行启动Flask 提供HelloWorld from flask import Flask # 导入Flask 类创建Flask应用对象 app = Flask(__name__) # app = application @app.route("/index") # 为 ...
分类:
其他好文 时间:
2020-06-30 20:57:42
阅读次数:
58
<h2>Index</h2> <input type="checkbox" name="test" value="值1" id="test"/>是否选中 <a onclick="send()">点击</a> <script src="~/wwwroot/lib/jquery/dist/jquery. ...
分类:
其他好文 时间:
2020-06-30 20:47:18
阅读次数:
59
ajax 1.创建 XMLHttpRequest 对象的语法: variable=new XMLHttpRequest(); 2.XHR 请求 a) 如需将请求发送到服务器,我们使用 XMLHttpRequest 对象的 open() 和 send() 方法: open(method,url,asy ...
分类:
Web程序 时间:
2020-06-29 13:05:42
阅读次数:
46
""" 首先梳理一下场景 有个发邮件需求 请求某个接口 接口返回成功之后 2后 发送邮件提醒 前提接口流程必须走完 有正确返回 项目中没有其他异步框架的时候 可以使用下边方式 做个简单的异步 1.写好异步装饰器, 2.将需要延迟的操作写到函数中 将装饰器 放到函数头顶 3.正常走接口流程 代码不会堵 ...
分类:
其他好文 时间:
2020-06-28 18:05:46
阅读次数:
57
1、新建maven项目2、配置git仓库3、在远程机器上执行脚本,这一步需要先配置能ssh远程机器a、安装publishoverssh插件b、jenkins----配置----configsystem,配置远程连接主机账号密码高级那边配置密码c、配置SendfilesorexecutecommandsoverSSHafterthebuildruns4、构建jar包5、全部配置完应用保存就可以发布了
分类:
编程语言 时间:
2020-06-28 16:42:45
阅读次数:
62
sp_send_dbmail [ [ @profile_name = ] 'profile_name' ] [ , [ @recipients = ] 'recipients [ ;n ]' ] [ , [ @copy_recipients = ] 'copy_recipient [ ;n ]' ] ...
分类:
数据库 时间:
2020-06-28 11:16:10
阅读次数:
57
//工厂模式functionnewObject(color,age,...arg){letobj=newObject()obj.color=color;obj.age=age;...arg;returnobj;}//单例模式functiongetinstance=(function(){letobject;returnfunction(){if(object==undefined){obj=new
分类:
其他好文 时间:
2020-06-28 09:47:43
阅读次数:
61
mark标记 1.以下用例,标记test_send_http()为webtest # content of test_server.py import pytest @pytest.mark.webtest def test_send_http(): pass # perform some webt ...
分类:
其他好文 时间:
2020-06-28 00:05:25
阅读次数:
70
GPS平台、网站建设、软件开发、系统运维,找森大网络科技!http://cnsendnet.taobao.com来自森大科技官方博客http://www.cnsendblog.com/index.php/?p=859 1.选项卡效果如图 2.Html代码如下,最重要的是showTab方法 3.sho ...
分类:
其他好文 时间:
2020-06-27 23:59:39
阅读次数:
99