[Redis#0] iredis: linux上redis超好用的环境配置

目录

Features 特征

Install 安装

Pip

Brew

Linux的

Download Binary 下载 Binary

Usage 用法

Using DSN 使用 DSN

Change The Default Prompt更改默认提示

Configuration 配置

Keys

Development 发展

Release Strategy 发布策略

Setup Environment 设置环境

Development Logs 开发日志

Catch Up with Latest Redis-doc了解最新的 Redis-doc

Related Projects 相关项目


先放链接:

laixintao/iredis: Interactive Redis: A Terminal Client for Redis with AutoCompletion and Syntax Highlighting.

最近学习redis ,因为在linux下,redis的代码提示和输入代码颜色没有区分,使用起来不太方便,今天周末 不是很忙,想着搜索解决一下

原来:

期间也尝试了rlwrap的设置方法,但可能因为环境问题,无法很好的解决补全的显示,要自己写脚本设计什么的,倒腾了几个小时,发现设计的也达不到理想的效果qwq,然后,我就在想,会不会有大佬写过呢(●'◡'●),于是就发现了iredis~~真的!就是说!超级丝滑!啊啊啊啊啊 在linux上学习redis的初学者 快!安!它! 

为了发扬 iredis,让有需要的uu可以在环境配置上少走弯路,我把它翻译过来了

配置后的效果:(理想的效果 对 就是我写脚本 想达到的效果/(ㄒoㄒ)/

Interactive Redis: A Cli for Redis with AutoCompletion and Syntax Highlighting.
交互式 Redis:具有自动完成和语法突出显示功能的 Redis CLI 。

IRedis is a terminal client for redis with auto-completion and syntax highlighting. IRedis lets you type Redis commands smoothly, and displays results in a user-friendly format.
IRedis 是具有自动完成和语法高亮功能的 redis 终端客户端。IRedis 允许您流畅地键入 Redis 命令,并以用户友好的格式显示结果。

IRedis is an alternative for redis-cli. In most cases, IRedis behaves exactly the same as redis-cli. Besides, it is safer to use IRedis on production servers than redis-cli: IRedis will prevent accidentally running dangerous commands, like KEYS * (see Redis docs / Latency generated by slow commands).
IRedis 是 redis-cli 的替代方案。在大多数情况下,IRedis 的行为与 redis-cli 完全相同。此外,在生产服务器上使用 IRedis 比 redis-cli 更安全:IRedis 可以防止意外运行危险的命令,例如 KEYS *(参见 Redis 文档 / 慢速命令产生的延迟)。

Features 特征

  • Advanced code completion. If you run command KEYS then run DEL, IRedis will auto-complete your command based on KEYS result.
    高级代码完成。如果你运行命令 KEYS 然后运行 DEL,IRedis 将根据 KEYS 结果自动完成你的命令。
  • Command validation. IRedis will validate command while you are typing, and highlight errors. E.g. try CLUSTER MEET IP PORT, IRedis will validate IP and PORT for you.
    命令验证。IRedis 将在您键入时验证命令,并突出显示错误。例如,try CLUSTER MEET IP PORT,IRedis 将为您验证 IP 和 PORT。
  • Command highlighting, fully based on redis grammar. Any valid command in IRedis shell is a valid redis command.
    命令高亮,完全基于 redis 语法。IRedis shell 中的任何有效命令都是有效的 redis 命令。
  • Human-friendly result display.
    人性化的结果显示。
  • pipeline feature, you can use your favorite shell tools to parse redis' response, like get json | jq ..
    pipeline 功能,你可以使用自己喜欢的 shell 工具来解析 Redis 的响应,比如 get json | jq .
  • Support pager for long output.
    支持长输出的寻呼机。
  • Support connection via URL, iredis --url redis://example.com:6379/1.
    支持通过 URL iredis --url redis://example.com:6379/1 进行连接。
  • Support cluster, IRedis will auto reissue command for MOVED response in cluster mode.
    支持集群,IRedis 会在集群模式下自动重新发出 MOVED 响应的命令。
  • Store server configuration: iredis -d prod-redis (see dsn for more).
    存储服务器配置:iredis -d prod-redis(有关详细信息,请参阅 dsn)。
  • peek command to check the key's type then automatically call get/lrange/sscan, etc, depending on types. You don't need to call the type command then type another command to get the value. peek will also display the key's length and memory usage.
    peek 命令检查键的类型,然后根据类型自动调用 get/lrange/sscan 等。您无需调用 type 命令,然后键入另一个命令即可获取该值。peek 还将显示密钥的长度和内存使用情况。
  • Ctrl + C to cancel the current typed command, this won't exit IRedis, exactly like bash behaviour. Use Ctrl + D to send a EOF to exit IRedis.
    Ctrl + C 取消当前键入的命令,这不会退出 IRedis,就像 bash 行为一样。使用 Ctrl + D 发送 EOF 以退出 IRedis。
  • Ctrl + R to open reverse-i-search to search through your command history.
    Ctrl + R 打开 reverse-i-search 以搜索您的命令历史记录。
  • Auto suggestions. (Like fish shell.)
    自动建议。(就像鱼壳一样。
  • Support --encode=utf-8, to decode Redis' bytes responses.
    支持 --encode=utf-8 来解码 Redis 的字节响应。
  • Command hint on bottom, include command syntax, supported redis version, and time complexity.
    命令提示位于底部,包括命令语法、支持的 redis 版本和时间复杂度。
  • Official docs with built-in HELP command, try HELP SET!
    内置 HELP 命令的官方文档,试试 HELP SET
  • Written in pure Python, but IRedis was packaged into a single binary with PyOxidizer, you can use cURL to download and run, it just works, even you don't have a Python interpreter.
    用纯 Python 编写,但 IRedis 与 PyOxidizer 打包成单个二进制文件,您可以使用 cURL 下载和运行,即使您没有 Python 解释器,它也可以工作。
  • You can change the cli prompt using --prompt option or set via ~/.iredisrc config file.
    您可以使用 --prompt 选项或通过 ~/.iredisrc 配置文件更改 cli 提示符。
  • Hide password for AUTH command.
    隐藏 AUTH 命令的密码。
  • Says "Goodbye!" to you when you exit!
    当你离开时对你说 “再见!
  • For full features, please see: iredis.xbin.io
    有关完整功能,请参阅:iredis.xbin.io

Install 安装

Pip

Install via pip: 通过 pip 安装:

pip install iredis

pipx is recommended:
建议使用 pipx:

pipx install iredis

Brew

For Mac users, you can install iredis via brew 🍻
对于 Mac 用户,您可以通过 brew 🍻 安装 iredis

brew install iredis

Linux的

You can also use your Linux package manager to install IRedis, like apt in Ubuntu (Only available on Ubuntu 21.04+).
您还可以使用 Linux 包管理器安装 IRedis,例如 Ubuntu 中的 apt(仅适用于 Ubuntu 21.04+)。

apt install iredis

Download Binary 下载 Binary

Or you can download the executable binary with cURL(or wget), untar, then run. It is especially useful when you don't have a python interpreter(E.g. the official Redis docker image which doesn't have Python installed.):
或者,您可以使用 cURL(或 wget)下载可执行二进制文件,解压,然后运行。当您没有 python 解释器时(例如,没有安装 Python 的官方 Redis docker 镜像)尤其有用。

wget  https://github.com/laixintao/iredis/releases/latest/download/iredis.tar.gz \&& tar -xzf iredis.tar.gz \&& ./iredis

(Check the release page if you want to download an old version of IRedis.)
(如果您想下载旧版本的 IRedis,请查看发布页面。

Usage 用法

Once you install IRedis, you will know how to use it. Just remember, IRedis supports similar options like redis-cli, like -h for redis-server's host and -p for port.
安装 IRedis 后,您将知道如何使用它。请记住,IRedis 支持与 redis-cli 类似的选项,例如 -h 用于 redis-server 的主机,-p 用于端口。

$ iredis --helpUsage: iredis [OPTIONS] [CMD]...IRedis: Interactive RedisWhen no command is given, IRedis starts in interactive mode.Examples:- iredis- iredis -d dsn- iredis -h 127.0.0.1 -p 6379- iredis -h 127.0.0.1 -p 6379 -a <password>- iredis --url redis://localhost:7890/3Type "help" in interactive mode for information on available commands andsettings.Options:-h TEXT                         Server hostname (default: 127.0.0.1).-p TEXT                         Server port (default: 6379).-s, --socket TEXT               Server socket (overrides hostname and port).-n INTEGER                      Database number.(overwrites dsn/url's dbnumber)-u, --username TEXT             User name used to auth, will be ignore forredis version < 6.-a, --password TEXT             Password to use when connecting to theserver.--url TEXT                      Use Redis URL to indicate connection(Can setwith env `IREDIS_URL`), Example:     redis://[[username]:[password]]@localhost:6379/0rediss://[[username]:[password]]@localhost:6379/0     unix://[[username]:[password]]@/path/to/socket.sock?db=0-d, --dsn TEXT                  Use DSN configured into the [alias_dsn]section of iredisrc file. (Can set with env`IREDIS_DSN`)--newbie / --no-newbie          Show command hints and useful helps.--iredisrc TEXT                 Config file for iredis, default is~/.iredisrc.--decode TEXT                   decode response, default is No decode, whichwill output all bytes literals.--client_name TEXT              Assign a name to the current connection.--raw / --no-raw                Use raw formatting for replies (default whenSTDOUT is not a tty). However, you can use--no-raw to force formatted output even whenSTDOUT is not a tty.--rainbow / --no-rainbow        Display colorful prompt.--shell / --no-shell            Allow to run shell commands, default toTrue.--pager / --no-pager            Using pager when output is too tall for yourwindow, default to True.--verify-ssl [none|optional|required]Set the TLS certificate verificationstrategy--prompt TEXT                   Prompt format (supported interpolations:{client_name}, {db}, {host}, {path}, {port},{username}, {client_addr}, {client_id}).--version                       Show the version and exit.--help                          Show this message and exit.

Using DSN 使用 DSN

IRedis support storing server configuration in config file. Here is a DSN config:
IRedis 支持将服务器配置存储在配置文件中。以下是 DSN 配置:

[alias_dsn]
dev=redis://localhost:6379/4
staging=redis://username:password@staging-redis.example.com:6379/1

Put this in your iredisrc then connect via iredis -d staging or iredis -d dev.
将其放入 iredisrc 中,然后通过 iredis -d staging 或 iredis -d dev 连接。

Change The Default Prompt
更改默认提示

You can change the prompt str, the default prompt is:
你可以更改提示符 str,默认提示符为:

127.0.0.1:6379>

Which is rendered by {host}:{port}[{db}]> , you can change this via --prompt option or change iredisrc config file. The prompwt string uses python string format engine, supported interpolations:
它由 {host}:{port}[{db}]>  渲染,您可以通过 --prompt 选项或更改 iredisrc 配置文件。prompwt 字符串使用 python 字符串格式引擎,支持的插值方式如下:

  • {client_name}
  • {db}
  • {host}
  • {path}
  • {port}
  • {username}
  • {client_addr}
  • {client_id}

The --prompt utilize Python String format engine, so as long as it is a valid string formatter, it will work( anything that "<your prompt>".format(...) accepts). For example, you can limit your Redis server host name's length to 5 by setting --prompt to iredis --prompt '{host:.5s}'.
--prompt 使用 Python 字符串格式引擎,因此只要它是一个有效的字符串格式化程序,它就可以工作("<your prompt>".format(...) 接受的任何东西)。例如,您可以通过将 --prompt 设置为 iredis --prompt '{host:.5s}' 来将 Redis 服务器主机名的长度限制为 5。

Configuration 配置

IRedis supports config files. Command-line options will always take precedence over config. Configuration resolution from highest to lowest precedence is:
IRedis 支持配置文件。命令行选项将始终优先于配置。从最高优先级到最低优先级的配置解析为:

  • Options from command line
    命令行中的选项
  • $PWD/.iredisrc
  • ~/.iredisrc (this path can be changed with iredis --iredisrc $YOUR_PATH)
    ~/.iredisrc(此路径可使用 iredis --iredisrc $YOUR_PATH 更改)
  • /etc/iredisrc
  • default config in IRedis package.
    IRedis 包中的 default 配置。

You can copy the self-explained default config here:
您可以在此处复制自我解释的默认配置:

https://raw.githubusercontent.com/laixintao/iredis/master/iredis/data/iredisrc

And then make your own changes.
然后进行您自己的更改。

(If you are using an old versions of IRedis, please use the config file below, and change the version in URL):
(如果您使用的是旧版本的 IRedis,请使用下面的配置文件,并在 URL 中更改版本):

https://raw.githubusercontent.com/laixintao/iredis/v1.0.4/iredis/data/iredisrc

Keys

IRedis support unix/readline-style REPL keyboard shortcuts, which means keys like Ctrl + F to forward work.
IRedis 支持 unix/readline 风格的 REPL 键盘快捷键,即 Ctrl + F 等键可以转发工作。

Also: 也:

  • Ctrl + D (i.e. EOF) to exit; you can also use the exit command.
    Ctrl + D(即 EOF)退出;您也可以使用 exit 命令。
  • Ctrl + L to clear screen; you can also use the clear command.
    Ctrl + L 清除屏幕;您也可以使用 clear 命令。
  • Ctrl + X Ctrl + E to open an editor to edit command, or V in vi-mode.
    Ctrl + X Ctrl + E 打开编辑器以编辑命令,或在 vi 模式下使用 V。

Development 发展

Release Strategy 发布策略

IRedis is built and released by GitHub Actions. Whenever a tag is pushed to the master branch, a new release is built and uploaded to pypi.org, it's very convenient.
IRedis 由 GitHub Actions 构建和发布。每当将标签推送到 master 分支时,都会构建新版本并将其上传到 pypi.org,这非常方便。

Thus, we release as often as possible, so that users can always enjoy the new features and bugfixes quickly. Any bugfix or new feature will get at least a patch release, whereas big features will get a minor release.
因此,我们尽可能频繁地发布,以便用户始终可以快速享受新功能和错误修复。任何错误修复或新功能都将至少获得补丁版本,而大型功能将获得次要版本。

Setup Environment 设置环境

IRedis favors poetry as package management tool. To setup a develop environment on your computer:
IRedis 喜欢将诗歌作为包管理工具。要在计算机上设置开发环境:

First, install poetry (you can do it in a python's virtualenv):
首先,安装 poetry(你可以在 python 的 virtualenv 中完成):

pip install poetry

Then run (which is similar to pip install -e .):
然后运行 (类似于 pip install -e .):

poetry install

Be careful running testcases locally, it may flush you db!!!
在本地运行 testcases 时要小心,它可能会刷新你的 db!!

Development Logs 开发日志

This is a command-line tool, so we don't write logs to stdout.
这是一个命令行工具,因此我们不会将日志写入 stdout。

You can tail -f ~/.iredis.log to see logs, the log is pretty clear, you can see what actually happens from log files.
你可以 tail -f ~/.iredis.log 查看日志,日志非常清晰,你可以从日志文件中看到实际发生的情况。

Catch Up with Latest Redis-doc
了解最新的 Redis-doc

IRedis use a git submodule to track current-up-to-date redis-doc version. To catch up with latest:
IRedis 使用 git 子模块来跟踪当前最新的 redis-doc 版本。要赶上最新版本:

  1. Git pull in redis-doc
    在 redis-doc 中加入 Git pull
  2. Copy doc files to /datacp -r redis-doc/commands* iredis/data
    将 doc 文件复制到 /data: cp -r redis-doc/commands* iredis/data
  3. Prettier markdownprettier --prose-wrap always iredis/data/commands/*.md --write
    更漂亮的 markdownprettier --prose-wrap always iredis/data/commands/*.md --write
  4. Check the diff, update IRedis' code if needed.
    检查差异,如果需要,更新 IRedis 的代码。

Related Projects 相关项目

  • redis-tui

If you like iredis, you may also like other cli tools by dbcli:
如果你喜欢 iredis,你可能也会喜欢 dbcli 的其他 cli 工具:

  • pgcli - Postgres Client with Auto-completion and Syntax Highlighting
    pgcli - 具有自动完成和语法高亮功能的 Postgres 客户端
  • mycli - MySQL/MariaDB/Percona Client with Auto-completion and Syntax Highlighting
    mycli - 具有自动完成和语法高亮功能的 MySQL/MariaDB/Percona 客户端
  • litecli - SQLite Client with Auto-completion and Syntax Highlighting
    litecli - 具有自动完成和语法高亮功能的 SQLite 客户端
  • mssql-cli - Microsoft SQL Server Client with Auto-completion and Syntax Highlighting
    mssql-cli - 具有自动完成和语法高亮功能的 Microsoft SQL Server 客户端
  • athenacli - AWS Athena Client with Auto-completion and Syntax Highlighting
    athenacli - 具有自动完成和语法突出显示功能的 AWS Athena 客户端
  • vcli - VerticaDB client
    vcli - VerticaDB 客户端
  • iredis - Client for Redis with AutoCompletion and Syntax Highlighting
    iredis - 具有自动完成和语法高亮显示的 Redis 客户端

IRedis is build on the top of prompt_toolkit, a Python library (by Jonathan Slenders) for building rich commandline applications.
IRedis 构建在 prompt_toolkit 之上,后者是一个 Python 库(由 Jonathan Slenders 编写),用于构建丰富的命令行应用程序。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/477260.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

软件测试——性能测试概念篇

前言&#xff1a;在完成对web网页或者接口的功能测试后&#xff0c;我们还需要考虑性能方面的因素&#xff0c;在学习完性能测试后&#xff0c;目标是能够对个人编写的项目进行性能测试&#xff0c;找到性能不足的地方&#xff08;性能问题个人很难去解决&#xff0c;如&#x…

从搭建uni-app+vue3工程开始

技术栈 uni-app、vue3、typescript、vite、sass、uview-plus、pinia 一、项目搭建 1、创建以 typescript 开发的工程 npx degit dcloudio/uni-preset-vue#vite-ts my-vue3-project2、安装sass npm install -D sass// 安装sass-loader&#xff0c;注意需要版本10&#xff0c;…

探索 .NET 9 控制台应用中的 LiteDB 异步 CRUD 操作

本文主要是使用异步方式&#xff0c;体验 litedb 基本的 crud 操作。 LiteDB 是一款轻量级、快速且免费的 .NET NoSQL 嵌入式数据库&#xff0c;专为小型本地应用程序设计。它以单一数据文件的形式提供服务&#xff0c;支持文档存储和查询功能&#xff0c;适用于桌面应用、移动…

AWS 新加坡EC2 VPS 性能、线路评测及免费注意事项

原文论坛给你更好的阅读讨论体验&#x1f490;&#xff1a; AWS 新加坡EC2 VPS 性能、线路评测及免费注意事项 - VPS - 波波论坛 引言 对于那些习惯薅“羊毛”的朋友来说&#xff0c; AWS 的 免费套餐 可能已经非常熟悉。这台vps是我用外币卡薅的免费的12个月的机器&#xf…

C++ASCII码表和字符操作

目录 1. 引言 2. ASCII码表 2.1 控制字符 2.2 可显示字符 3. 字符操作 3.1 记住几个字符规律 3.2 打印能够显示的ASCII码 3.3 字母大小写转换 3.4 数字转数字字符 1. 引言 在电子计算机中&#xff0c;只能识别由 0 和 1 组成的一串串的二进制数字&#xff0c;为了将人类…

git使用(二)

git使用&#xff08;二&#xff09; git常用基本操作命令git clonegit loggit remotegit statusgit addgit commitgit pushgit branchgit pull git常用基本操作命令 git clone 项目开发中项目负责人会在github上创建一个远程仓库&#xff0c;我们需要使用git clone将远程仓库…

密码学11

概论 计算机安全的最核心三个关键目标&#xff08;指标&#xff09;/为&#xff1a;保密性 Confidentiality、完整性 Integrity、可用性 Availability &#xff0c;三者称为 CIA三元组 数据保密性&#xff1a;确保隐私或是秘密信息不向非授权者泄漏&#xff0c;也不被非授权者使…

netstat -tuln | grep 27017(显示所有监听状态的 TCP 和 UDP 端口,并且以数字形式显示地址和端口号)

文章目录 1. 确定占用端口的进程使用 lsof 命令使用 fuser 命令 2. 结束占用端口的进程3. 修改 MongoDB 配置文件4. 检查 MongoDB 日志文件5. 重新启动 MongoDB 服务6. 检查 MongoDB 服务状态总结 [rootlocalhost etc]# netstat -tuln | grep 27017 tcp 0 0 127.0.…

ElasticSearch7.x入门教程之集群安装(一)

文章目录 前言一、es7.x版本集群安装二、elasticsearch-head安装三、Kibana安装总结 前言 在工作中遇到了&#xff0c;便在此记录一下&#xff0c;以防后面会再次遇到。第一次使用是在2020年末&#xff0c;过了很久了&#xff0c;忘了些许部分了。 在工作当中&#xff0c;如果…

I.MX6U 裸机开发18.GPT定时器实现高精度延时

I.MX6U 裸机开发18.GPT定时器实现高精度延时 一、GPT定时器简介1. GPT 功能2. 时钟源3. 框图4. 运行模式&#xff08;1&#xff09;Restart mode&#xff08;2&#xff09;Free-Run Mode 5. 中断类型&#xff08;1&#xff09;溢出中断 Rollover Interrupt&#xff08;2&#x…

key-value存储实现

文章目录 一、项目简介二、项目流程图三、网络3.1、epoll实现3.2、io_uring实现 四、协议五、存储5.1、array实现5.2、rbtree实现5.3、hash实现 六、测试 一、项目简介 key-value存储其实是一个小型的redis&#xff0c;用户在客户端输入存储相关的指令发送给服务器端&#xff…

大公司如何实现打印机共享的?如何对打印机进行管控或者工号登录后进行打印?异地打印机共享的如何实现可以帮助用户在不同地理位置使用同一台打印机完成打印任务?

大公司如何实现打印机共享的&#xff1f;如何对打印机进行管控或者工号登录后进行打印&#xff1f;异地打印机共享的如何实现可以帮助用户在不同地理位置使用同一台打印机完成打印任务&#xff1f; 如果在局域网内&#xff0c;可以不需要进行二次开发&#xff0c;通过对打印机进…

微软发布Win11 24H2系统11月可选更新KB5046740!

系统之家11月22日报道&#xff0c;微软针对Win11 24H2系统推出2024年11月最新可选更新补丁KB5046740&#xff0c;更新后系统版本后升至26100.2454&#xff0c;此次更新后修复当应用程序以PDF和XLSX格式导出图表对象时停止响应、无法使用API查找旋转信息等问题。以下小编将给大家…

探索 RocketMQ:企业级消息中间件的选择与应用

一、关于RocketMQ RocketMQ 是一个高性能、高可靠、可扩展的分布式消息中间件&#xff0c;它是由阿里巴巴开发并贡献给 Apache 软件基金会的一个开源项目。RocketMQ 主要用于处理大规模、高吞吐量、低延迟的消息传递&#xff0c;它是一个轻量级的、功能强大的消息队列系统&…

李宏毅机器学习课程知识点摘要(6-13集)

pytorch简单的语法和结构 dataset就是数据集&#xff0c;dataloader就是分装好一堆一堆的 他们都是torch.utils.data里面常用的函数&#xff0c;已经封装好了 下面的步骤是把数据集读进来 这里是读进来之后&#xff0c;进行处理 声音信号&#xff0c;黑白照片&#xff0c;红…

Wekan看板安装部署与使用介绍

Wekan看板安装部署与使用介绍 1. Wekan简介 ​ Wekan 是一个开源的看板式项目管理工具&#xff0c;它的配置相对简单&#xff0c;因为大多数功能都是开箱即用的。它允许用户以卡片的形式组织和跟踪任务&#xff0c;非常适合敏捷开发和日常任务管理。Wekan 的核心功能包括看板…

【Mysql】开窗聚合函数----SUM,AVG, MIN,MAX

1、概念 在窗口中&#xff0c;每条记录动态地应用聚合函数&#xff08;如&#xff1a;SUM(),AVG(),MAX(),MIN(),COUNT(),&#xff09;可以动态计算在指定的窗口内的各种聚合函数值。 2、操作 以下操作将基于employee表进行操作。 sum() 进行sum的时候&#xff0c;没有order …

EWA Volume Splatting

摘要 本文提出了一种基于椭圆高斯核的直接体绘制新框架&#xff0c;使用了一种投影方法&#xff08;splatting approach&#xff09;。为避免混叠伪影&#xff08;aliasing artifacts&#xff09;&#xff0c;我们引入了一种重采样滤波器的概念&#xff0c;该滤波器结合了重建核…

Vue实训---0-完成Vue开发环境的搭建

1.在官网下载和安装VS Code编辑器 完成中文语言扩展&#xff08;chinese&#xff09;&#xff0c;安装成功后&#xff0c;需要重新启动VS Code编辑器&#xff0c;中文语言扩展才可以生效。 安装Vue-Official扩展&#xff0c;步骤与安装中文语言扩展相同&#xff08;专门用于为“…

C# 超链接控件LinkLabel无法触发Alt快捷键

在C#中&#xff0c;为控件添加快捷键的方式有两种&#xff0c;其中一种就是Windows中较为常见的Alt快捷键&#xff0c;比如运行对话框&#xff0c;记事本菜单等。只需要按下 Alt 框号中带下划线的字母即可触发该控件的点击操作。如图所示 在C#开发中&#xff0c;实现类似的操作…