大力小刺猬

文章
8
资源
0
加入时间
3年0月8天

input的disabled与readonly属性

HTML5的input框还是非常强大的,值得深入研究,但是也有很多的坑。前段时间就碰到一个。 用MUI框架开发app碰到列表里面的<a></a>,当它需要添加链接跳转,而且内部有input框,直接上代码。<ul class="mui-table-view mt-0"> <li class="mui-table-view-cell table-view-input"> <a

Leetcode 1. Two SUM(两数之和)Python

方法一:class Solution: def twoSum(self, nums: List[int], target:int) -&gt; List[int]:n=len(nums)for i in range(0,n):for j in range(i+1,n):if target-nums[i]==nums[j]:return i,jbreakelse:continue...

Spring boot Caffeine缓存(二)——Cache、LoadingCache

前边文章主要介绍了下Caffeine以及CacheManager,这里说下Caffeine的其它配置及用法。LoadingCacheLoadingCache直接定义一个缓存,在项目中可以直接拿来存取数据,同时还可以引入CacheLoad加载数据。 LoadingCache是个接口,继承了Cache...

python里使用正则表达式搜索单词

在python里有强大的正则表达式模块re,用来它进行模式匹配是非常方便的,比如下面的例子,就是用来从一段文字里查找一个单词,如下:import repattern = 'this'text = 'http://blog.csdn.net/caimouse is great, this is great way!'match = re.search(pattern, text)s =