码迷,mamicode.com
首页 >  
搜索关键字:marked    ( 522个结果
62. Unique Paths
【题目】 A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at ...
分类:其他好文   时间:2019-01-24 01:17:26    阅读次数:174
vue使用marked.js实现markdown转html并提取标题生成目录
vue使用marked.js实现markdown转html并提取标题生成目录 ...
分类:Web程序   时间:2019-01-16 14:57:22    阅读次数:385
前端知识
@第一部分 HTML @声明编码,放在<head> 对于中文网页需要使用 <meta charset="utf-8"> 声明编码,否则会出现乱码。有些浏览器(如 360 浏览器)会设置 GBK 为默认编码,则你需要设置为 <meta charset="gbk">。 @HTML中不支持 空格、回车、制 ...
分类:其他好文   时间:2019-01-10 13:57:44    阅读次数:144
只读事务@Transactional(readOnly = true)
定义 从设置的时间点(时间点beta)开始到事务结束的过程中,该事务将看不见其他事务所提交的数据,即查询中不会出现别人在beta之后提交的数据。 应用场合 对于一个函数,如果执行的只是单条查询语句,则没有必要启用事务支持,数据库默认支持SQL执行期间的读一致性;如果执行多条查询语句,例如统计查询,报 ...
分类:其他好文   时间:2018-12-30 20:33:37    阅读次数:242
springboot启动时过滤不需要注入的类
在springbootApplication启动类上加入注解 其中@ComponentScan 注解属性excludeFilters可以过滤多个类型的类的加载,其中有内部类,可以指定过滤的类型,上面是指定class文件进行过滤,也可以指定其他类型的 ...
分类:编程语言   时间:2018-12-29 19:37:23    阅读次数:656
CSS 分组 和 嵌套 选择器
分组选择器 为了尽量减少代码,你可以使用分组选择器。 每个选择器用逗号分隔。 嵌套选择器 它可能适用于选择器内部的选择器的样式。 在下面的例子设置了三个样式: p{ }: 为所有 p 元素指定一个样式。 .marked{ }: 为所有 class="marked" 的元素指定一个样式。 .marke ...
分类:Web程序   时间:2018-12-29 13:58:15    阅读次数:226
Python 解释器
Python3 解释器 前期工作: 设置环境变量(PATH)! 交互式编程 脚本式编程 1.交互式编程(边写边运行) 2.脚本式编程(写完后解译) $ python test.py 运行失败 在 cmd 窗口输入 $ python test.py,得到运行错误的提示: Python 的实际工作场景往 ...
分类:编程语言   时间:2018-12-26 20:09:31    阅读次数:154
Python 04
python中的lstrip、rstrip、strip str.lstrip([chars]) chars -- 指定截取的字符(默认空格)。 截掉字符串左边的空格或指定字符。 结果: str.rstrip([chars]) chars -- 指定截取的字符(默认空格)。 截掉字符串右边的空格或指定 ...
分类:编程语言   时间:2018-12-13 13:20:09    阅读次数:218
swift 报错 Call can throw, but it is not marked with 'try' and the error is not handled
在开发中使用正则表达式时报了这样的问题:Call can throw, but it is not marked with 'try' and the error is not handled,即: let regex:NSRegularExpression = NSRegularExpressio ...
分类:编程语言   时间:2018-12-12 19:07:28    阅读次数:195
LeetCode - Unique Paths II
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at any p ...
分类:其他好文   时间:2018-12-02 10:31:29    阅读次数:161
522条   上一页 1 ... 14 15 16 17 18 ... 53 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!