EL表达式必须依赖于JSP才能生存下去 作用:减少<%%>(java代码)在页面上的显示,利于代码的维护 EL的基本语法: 往浏览器中输出内容 ${1} ${“11”} ${'111’} 算术运算符 ${4+1} ${4-1} ${4*1} ${4/1} 注意:EL表达式中的+号没有拼接作用 <%= ...
分类:
其他好文 时间:
2020-07-08 09:12:55
阅读次数:
64
####一、前言 fixture里面有个scope参数可以控制fixture的作用范围: session > module > class > function ####二、fixture作用范围 function:每一个函数或方法都会调用 class:每一个类调用一次,一个类可以有多个方法 mod ...
分类:
其他好文 时间:
2020-07-08 01:30:36
阅读次数:
63
一、导入openpyxl 在python中的命令行中敲入: pip install openpyxl 二、代码运行 以下为python中代码获取Excel中的数据: #前提:已准备好Excel表格数据,case.xlsx#①导入openpyxlimport openpyxlfrom openpyxl ...
分类:
编程语言 时间:
2020-07-08 00:49:48
阅读次数:
92
package LeetCode_162 /** * 162. Find Peak Element * https://leetcode.com/problems/find-peak-element/description/ * * A peak element is an element that ...
分类:
其他好文 时间:
2020-07-07 23:20:32
阅读次数:
54
Shell流程控制 1、if判断 if [ 条件判断式 ];then 程序 fi 或者 if [ 条件判断式 ] then 程序 fi 注意:[ 条件判断式 ],中括号和条件判断式之间有空格 2、case语句 case $变量名 in "值1") 如果变量的值等于1,则执行程序1 ;; "值2") ...
分类:
系统相关 时间:
2020-07-07 19:43:05
阅读次数:
139
#基础用例数据类class CaseInfo: def __init__(self,case_id,case_name,case_module,case_pri,case_step,case_result): self.case_id=case_id self.case_name=case_name ...
分类:
其他好文 时间:
2020-07-07 17:34:21
阅读次数:
57
#函数 /* 存储过程:可以有0个或多个返回,适合批量插入、批量更新 函数:有且仅有一个返回,适合处理数据后返回一个结果 */ #一、创建语法 /* create function 函数名(参数列表) returns 返回类型 begin 函数体 end 参数列表: 参数名 参数类型 */ use ...
分类:
数据库 时间:
2020-07-07 17:29:37
阅读次数:
66
void A_LedOnWihch(uint8_t s) { s = MAX(1, MIN(s,3)); switch (s) { case 1: { SetLed1ROff(); SetLed1BOn(); SetLed2Off(); SetLed3Off(); } break; case 2: ...
分类:
其他好文 时间:
2020-07-07 16:04:18
阅读次数:
96
if exists (select * from sysobjects where id = object_id(N'[fn_ChineseToSpell]') and xtype in (N'FN', N'IF', N'TF')) drop function [fn_ChineseToSpell] ...
分类:
数据库 时间:
2020-07-07 15:36:09
阅读次数:
89
| break | case | catch | continue | do | | delete | default | false | finally | for | |fuction | function| if | in | inscanceof | | new | null | retur ...
分类:
编程语言 时间:
2020-07-07 13:32:07
阅读次数:
112