AngularJS 知识点: DataBinding Providers Validators Directives Controllers Modules Expressions Factories Services Filters Dependency Injection Scope Angul ...
分类:
Web程序 时间:
2019-11-12 13:08:58
阅读次数:
110
Python3.x 中 input() 函数接受一个标准输入数据,返回为 string 类型。 Python2.x 中 input() 相等于 eval(raw_input(prompt)) ,用来获取控制台的输入 input接收的所有数据都是字符串,即便是数字,也被认为是字符串; ...
分类:
其他好文 时间:
2019-11-11 12:26:30
阅读次数:
103
lr_eval_string 用字符串形式返回参数值 lr_eval_string("The row count is:{row_cnt}"); lr_paramarr_len 返回数组长度 lr_paramarr_len("outFlightVal"); lr_save_datetime 保存日期 ...
分类:
其他好文 时间:
2019-11-11 12:24:05
阅读次数:
87
一、用python爬取一个求职网页的一些信息 网页截图如下: 代码: import requests from bs4 import BeautifulSoup import io import sys sys.stdout=io.TextIOWrapper(sys.stdout.buffer,en ...
分类:
编程语言 时间:
2019-11-11 09:34:50
阅读次数:
91
壹 ? 引 我在前面花了两篇博客分别系统化介绍了angularjs中的directive指令与component组件,当然directive也能实现组件这点毋庸置疑。在了解完两者后,即便我们知道component就像删减版的directive,用法上大同小异,但两者在使用角度仍然存在不少差异,那么本 ...
分类:
Web程序 时间:
2019-11-10 21:07:07
阅读次数:
126
背景:为了存储HTTP通讯中客户端与服务器之间的会话状态 Cookie和Session都是为了解决HTTP协议的无状态问题,存储HTTP通讯中客户端与服务器之间的会话状态。 不同的是Cookie依赖HTTP请求头与响应头实现且存储在客户端,而Session存储在服务器端,Session可以通过Coo ...
分类:
其他好文 时间:
2019-11-10 15:23:28
阅读次数:
85
python的内置函数: abs()、divmod()、input()、open()、staticmethod()、all()、enumerate()、int()、ord()、str()、any()、eval()、 isinstance()、pow()、sum()、basestring()、exec ...
分类:
编程语言 时间:
2019-11-10 13:30:57
阅读次数:
93
web_find 在html页面中搜索文本字符串 int web_find( const char *StepName, <Attributes and Specifications list>, char *searchstring, LAST ); StepName:步骤名称,必选 Attrib ...
分类:
其他好文 时间:
2019-11-10 12:04:53
阅读次数:
129
最佳的情侣身高差遵循着一个公式:(女方的身高)×1.09 =(男方的身高)。下面就请你写个程序,为任意一位用户计算他/她的情侣的最佳身高。 输入格式: 输入第一行给出正整数N(≤10),为前来查询的用户数。随后N行,每行按照“性别 身高”的格式给出前来查询的用户的性别和身高,其中“性别”为“F”表示 ...
分类:
编程语言 时间:
2019-11-08 12:31:22
阅读次数:
323
public class RangeValueAttribute : ValidationAttribute { public int Min { get; set; } public int Max { get; set; } protected override ValidationResult ...
分类:
其他好文 时间:
2019-11-07 15:01:00
阅读次数:
68