ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    一键导入的 Scheme

    Feb 9, 20238 min read
      clashInstall() {
          if (this.customSubUrl === "") {
            this.$message.error("请先填写必填项,生成订阅链接");
            return false;
          }
    
          const url = "cl*****ash://install-config?url=";
          window.open(
            url +
            encodeURIComponent(
              this.curtomShortSubUrl !== ""
                ? this.curtomShortSubUrl
                : this.customSubUrl
            )
          );
        },
    

    相关文章

    sqlite create table with datetime

    在SQLite中创建一个包含日期时间字段的表,表名为"words",其中"created_at"字段默认使用本地时间。

    SDWebImage.framework 用于处理网络图片的库

    SDWebImage.framework是一个功能强大、易于使用的开源库,专为iOS开发者提供网络图片的加载、缓存、展示和管理功能,支持占位图显示、图片缓存、渐进式下载和断点续传。

    什么时候不可知论

    不可知论是一种观点,认为人类无法确知超自然或宗教领域的真相,因此对这些问题持保留或悬而未决的态度。

    如何在Less中使用循环结构优化样式?

    在Less中,通过使用@for循环结构可以有效地创建和优化CSS样式,简化代码编写过程。

    解决 pod install 时 jsdelivr cdn 报错

    执行 `pod install` 时,由于 CDN 从 jsdelivr 下载 FMDB 的 podspec 文件时出现超时错误,导致安装失败。