yiyan 的文章
-
Microsoft Project – 状态报告
创建项目计划和基线后,项目开始.在这个阶段,项目经理将专注于收集,监控,分析项目绩效,并通过与利益相关者沟通来更新项目状态. 当计划和计划之间存在差异…… -
-
VBA – 有用的资源
以下资源包含有关VBA的其他信息.请使用它们来获得有关此主题的更多深入知识. VBA上的有用链接 Visual Basic语言参考 : 本用户指南由MSDN提供. 欢迎使用Off…… -
-
[Android开发]Android 动画
Android 动画 AlphaAnimation RelativeLayout rl_splash = (RelativeLayout) findViewById(R.id.rl_splash); //播放动画效果 AlphaAnimation animation …… -
[Vue.js 3.0] Guide – Accessibility – Standards
# Standards The World Wide Web Consortium (W3C) Web Accessibility Initiative (WAI) develops web accessibility standards for the different component…… -
-
2020 年 deepin 深度操作系统 V20 更新 附更新内容
深度操作系统官方近期发布了 2020 年 deepin 回顾 ,2020 年,deepin 社区版本经历了 3 次版本迭代,7 次更新推送。下文中为大家带来了2020 年 deepin 深度操作系统 V20 更新 附更新... -
[Android开发]Android 组件Service
服务的两种开启方式: startService():开启服务. 开启服务后 服务就会长期的后台运行,即使调用者退出了.服务仍然在后台继续运行.服务和调用者没有什么关系…… -
[Vue.js 3.0] Style Guide
# Style Guide This is the official style guide for Vue-specific code. If you use Vue in a project, it's a great reference to avoid errors, bikeshed…… -
Linux Mint系统桌面Note可以用斜体字吗?
Linux Mint系统桌面Note可以用斜体字吗?Linux Mint系统的桌面note想要让字体倾斜,该怎么操作呢?下面我们就来看看详细的教程,需要的朋友可以参考下... -
[Vue.js 3.0] API – Refs
# Refs This section uses single-file component syntax for code examples # ref Takes an inner value and returns a reactive and mutable ref objec…… -
-
[Vue.js 3.0] API – Composition
# Composition # mixins Type: Array<Object> Details: The mixins option accepts an array of mixin objects. These mixin objects can contain…… -
[Vue.js 3.0] API – Assets
# Assets # directives Type: Object Details: A hash of directives to be made available to the component instance. Usage: const app = Vue.cre…… -
-
curl 对于同一个请求,不同的参数返回状态码不一样
如图,url地址都是同一个,直接使用curl或curl -i命令返回状态和结果是正确的,但使用curl -I时返回状态码就成了403,这是什么原因呢? -
[Vue.js 3.0] API – Global API
# Global API # createApp Returns an application instance which provides an application context. The entire component tree mounted by the applicati…… -
Java字符串概述
字符串从表面上看,就是引号之间的数据,如“www.xyhtml5.com”、“微学苑”、“c++入门教程”等。在Java中,字符串处理类库使用最多的是两种:“String”类和“StringB…… -
-
[Android开发]Android Widget
可以使用AppWidgetManager更新Widget中的数据,但这样最短也要半个小时才能更新一次,一般不用他更新,而是自己定义一个服务去更新Widget中的数据。 Widget…… -
[Vue 3] 迁移指南 – 异步组件
# 异步组件 新增 # 概览 以下是对变化的高层次概述: 新的 defineAsyncComponent 助手方法,用于显式地定义异步组件 component 选项重命名为 loader …… -
[VScode教程] VSCode 面包屑
VSCode面包屑,叫做 Breadcrumb,翻译过来就是面包屑导航,主要是展示目前的代码在整个工程里的路径,同时你还能够看出这个代码所在位置的结构层级并且可以…… -
[Android开发]Android 多线程断点下载
多线程下载 public class MultiThreadDownloader { private URL url; // 目标地址 private File file; // 本地文件 private long threadLen;…… -
[Vue 3] 迁移指南 – emits Option
# emits Option 新增 # Overview Vue 3 now offers an emits option, similar to the existing props option. This option can be used to define the e……