一、关于如何通过url来实现登录界面的数据提交和获取 先看一下html部分的文件内容: <form action="/register" method="post"> <p>姓名<input type="text" name="user"></p> <p>年龄<input type="text" n ...
分类:
编程语言 时间:
2020-06-14 01:36:55
阅读次数:
79
在/usr/local/freeswitch/conf/dialplan/default.xml文件里,<extension name="Local_Extension">节下面 <action application="set" data="RECORD_TITLE=Recording ${des ...
分类:
其他好文 时间:
2020-06-13 13:05:46
阅读次数:
139
SQL语言分为五类1.DDL:Data Definition Language,数据定义语言,包括了:create,drop,alter,truncate(这是删除并新建表,可消除自增的历史最大值); 2.DML:Data Manipulation Language,数据操作语言,包括了:inser ...
分类:
数据库 时间:
2020-06-12 17:27:46
阅读次数:
66
枚举是我们日常开发经常用到的一个类型 , 比如说我们有个用户系统 , 那么我们怎么判断这个是一个我们的忠实用户或者说是一个忠实粉丝呢 ? 我们就定义如下的行为枚举 public enum BehaviorEnum {/*** 关注*/FOLLOW{@Overridevoid action() {Sy ...
分类:
其他好文 时间:
2020-06-12 14:42:54
阅读次数:
48
解决方法:使用upload.clearFiles()方法清空文件列表 页面: <el-upload ref="upload_file" action="" :multiple="false" :limit="1" :show-file-list="false" :on-change="importE ...
分类:
其他好文 时间:
2020-06-12 10:49:48
阅读次数:
141
本文介绍如何使用枚举以及,如何将枚举类型更好的应用于项目中,看完本文可以有序的将项目中的枚举更容易的使用到每个角落。 1,分析枚举 /// <summary> /// 性别 /// </summary> public enum Gender { /// <summary> /// 男 /// </s ...
分类:
Web程序 时间:
2020-06-12 10:34:37
阅读次数:
62
1 Intent.ACTION_VIEW String android.intent.action.VIEW 用于显示用户的数据。比较通用,会根据用户的数据类型打开相应的Activity。比如 tel:13400010001打开拨号程序,http://www.g.cn则会打开浏览器等。 代码1: U ...
分类:
其他好文 时间:
2020-06-11 15:00:19
阅读次数:
55
MVC Filters demo Controll:AuthFiltersController action Welcome添加了系统自带的过滤器Authorize public class AuthFiltersController : Controller { // // GET: /AuthF ...
分类:
Web程序 时间:
2020-06-11 13:43:46
阅读次数:
65
# 允许最大连接数max_connections=2000# 服务端使用的字符集默认为8比特编码的latin1字符集character_set_server=utf8# insert语句大小bulk_insert_buffer_size = 256M# 服务所能处理的请求包的最大大小max_allo ...
分类:
数据库 时间:
2020-06-11 13:15:28
阅读次数:
89
/** * 模拟数据 数据格式如下: * * 日期 卡口ID 摄像头编号 车牌号 拍摄时间 车速 道路ID 区域ID * date monitor_id camera_id car action_time speed road_id area_id * * monitor_flow_action * ...
分类:
其他好文 时间:
2020-06-09 20:34:37
阅读次数:
71