丹青 的文章
-
-
deepin20终端远程管理服务器的方法
deepin20终端怎么远程管理服务?deepin20终端界面提供ssh远程管理服务器的功能,该怎么使用呢?下面我们就来看看详细的教程,需要的朋友可以参考下... -
thinkPHP token验证机制
在ThinkPhp中通过SESSION实现了防止表单重复提交,实现方式如下: <?php session_start(); $_SESSION['__hash__'] = md5(microtime(true)); echo <<&…… -
CentOS下查看当前系统情况的命令汇总
在Linux下获取当前系统情况,这是在终端维护服务器的时候一个不可或缺的信息的,今天明月就收集了一些 CentOS 下查看当前系统的命令汇总,就当是做个学... -
[Android开发]Android ListView
ListView属性: fadingEdge属性ListView上边和下边有黑色的阴影,android : fadingEdge = "none"后就不会有阴影了 scrollbars属性,隐藏滚动条android : …… -
[Vue.js 3.0] API – Directives
# Directives # v-text Expects: string Details: Updates the element's textContent(opens new window). If you need to update the part of textCont…… -
[VScode教程] VSCode 参数预览
VS Code参数预览,当我们从建议列表选择了一个函数,然后输入括号,准备开始输入参数时,我们会看到一个参数预览的悬浮框。通过这个参数预览的窗口,我们可以…… -
CentOS 7.0关闭默认防火墙启用iptables防火墙
iptables防火墙可以说是非常强大的,所以使用Linux的话iptables是必不可少的,但是有些Linux发行版默认防火墙并不是iptables的,... -
[Vue.js 3.0] API – Lifecycle hooks
# Lifecycle hooks Note All lifecycle hooks automatically have their this context bound to the instance, so that you can access data, computed prop…… -
[Vue.js 3.0] API – DOM
# DOM # template Type: string Details: A string template to be used as the markup for the component instance. The template will replace the mo…… -
[Vue.js 3.0] API – Options API
The Options API contains the following sections: Data DOM Lifecycle Hooks Assets Composition Miscellaneous -
请问.net有没有类似像spring那样方便的事务处理方案
请问.net 是如何实现事务的 , 我看了下都比较麻烦需要自己写开启事务和提交, 有没有类似java的 spring框架 一个注解 @Transactional, 放在需要执行事务的方法上就自动搞定, -
[VScode教程] VSCode 行跳转
VS Code行跳转,打开某一个文件之后,你的另外一个需求可能就是要快速跳转到这个文件的某一行。你可能会想,VS Code是不是可以像Vim那样,输入“:13”就能跳转…… -
[VScode教程] VSCode 符号跳转
VS Code符号跳转,文件跳转和行跳转,是代码跳转的基本操作,也是日常编码中的高频操作。不过有的时候,你可能会希望能够立刻跳转到文件里的类定义,或者函…… -
关于better-scroll插件的无法滑动bug(2021通过插件解决)
这篇文章主要介绍了关于better-scroll插件的无法滑动bug(2021通过插件解决),本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下 -
[Vue.js 3.0] Migration – v-model
# v-model breaking # Overview In terms of what has changed, at a high level: BREAKING: When used on custom components, v-model prop and even…… -
一起来了解一下JavaScript的预编译(小结)
这篇文章主要介绍了一起来了解一下JavaScript的预编译(小结),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 -
[VScode教程] VSCode 折叠代码
VSCode折叠代码,很多编程语言都使用花括号来包裹代码块。比如说类的定义、函数的定义、条件判断语句或者循环语句,它们都是用花括号作为一个代码块的开始和结…… -
[Vue.js 3.0] Migration – Props Default Function this Access
# Props Default Function this Access breaking Props default value factory functions no longer have access to this. Instead: Raw props receive…… -
[Vue 3] 迁移指南 – $attrs 包括 class & style
# $attrs 包括 class & style 非兼容 # 概览 现在 $attrs 包含传递给组件的所有 attribute,包括 class 和 style。 # 2.x 行为 在 Vue 2 的虚拟 DO…… -
[Vue 3] 迁移指南 – $children
# $children 移除 # 概览 $children 实例 property 已从 Vue 3.0 中移除,不再支持。 # 2.x 语法 在 2.x 中,开发者可以使用 this.$children 直接访问…… -
[Vue.js 3.0] Migration – key attribute
# key attribute breaking # Overview NEW: keys are no longer necessary on v-if/v-else/v-else-if branches, since Vue now automatically generat…… -
-
[Vue 3] 迁移指南 – v-bind 合并行为
# v-bind 合并行为 非兼容 # 概览 不兼容:v-bind 的绑定顺序会影响渲染结果。 # 介绍 在元素上动态绑定 attribute 时,常见的场景是在一个元素中同…… -
ES语句 – ECMAScript with 语句
ECMAScript with 语句 有标签的语句 with 语句用于设置代码在特定对象中的作用域。 它的语法: with (_expression_) _statement_ 例如: var sMessage = "hel……