聊聊zfs中的write

以下是关于zfs和zpool的伪原创内容,保持了原文的结构和大意,同时进行了改写:

// 创建一个zpool$ modprobe zfs$ zpool create -f -m /sample sample -o ashift=12 /dev/sdc$ zfs create sample/fs1   -o mountpoint=/sample/fs1   -o atime=off   -o canmount=on   -o compression=lz4   -o quota=100G   -o recordsize=8k   -o logbias=throughput

// 手动卸载和挂载$ umount /sample/fs1$ zfs mount sample/fs1

zpool和zfs参数获取:

// 获取zfs pool的默认参数$ zpool get all

// 获取zfs pool挂载文件系统的参数$ zfs get all

zfs和内核之间的桥梁super_operations:

const struct super_operations zpl_super_operations = {.alloc_inode = zpl_inode_alloc,.destroy_inode = zpl_inode_destroy,.dirty_inode = zpl_dirty_inode,.write_inode = NULL,.evict_inode = zpl_evict_inode,.put_super = zpl_put_super,.sync_fs = zpl_sync_fs,.statfs = zpl_statfs,.remount_fs = zpl_remount_fs,.show_devname = zpl_show_devname,.show_options = zpl_show_options,.show_stats = NULL,};

struct file_system_type zpl_fs_type = {.owner = THIS_MODULE,.name = ZFS_DRIVER,.mount = zpl_mount,.kill_sb = zpl_kill_sb,};

inode_operations:

extern const struct inode_operations zpl_inode_operations;extern const struct inode_operations zpl_dir_inode_operations;extern const struct inode_operations zpl_symlink_inode_operations;extern const struct inode_operations zpl_special_inode_operations;extern dentry_operations_t zpl_dentry_operations;extern const struct address_space_operations zpl_address_space_operations;extern const struct file_operations zpl_file_operations;extern const struct file_operations zpl_dir_file_operations;

/ zpl_super.c /extern void zpl_prune_sb(int64_t nr_to_scan, void *arg);extern const struct super_operations zpl_super_operations;extern const struct export_operations zpl_export_operations;extern struct file_system_type zpl_fs_type;

const struct inode_operations zpl_inode_operations = {.setattr = zpl_setattr,.getattr = zpl_getattr,

ifdef HAVE_GENERIC_SETXATTR

.setxattr = generic_setxattr,.getxattr = generic_getxattr,.removexattr = generic_removexattr,

endif

.listxattr = zpl_xattr_list,

if defined(CONFIG_FS_POSIX_ACL)

if defined(HAVE_SET_ACL)

.set_acl = zpl_set_acl,

endif / HAVE_SET_ACL /

.get_acl = zpl_get_acl,

endif / CONFIG_FS_POSIX_ACL /

};

const struct inode_operations zpl_dir_inode_operations = {.create = zpl_create,.lookup = zpl_lookup,.link = zpl_link,.unlink = zpl_unlink,.symlink = zpl_symlink,.mkdir = zpl_mkdir,.rmdir = zpl_rmdir,.mknod = zpl_mknod,

if defined(HAVE_RENAME_WANTS_FLAGS) || defined(HAVE_IOPS_RENAME_USERNS)

.rename = zpl_rename2,

else

.rename = zpl_rename,

endif

ifdef HAVE_TMPFILE

.tmpfile = zpl_tmpfile,

endif

.setattr = zpl_setattr,.getattr = zpl_getattr,

ifdef HAVE_GENERIC_SETXATTR

.setxattr = generic_setxattr,.getxattr = generic_getxattr,.removexattr = generic_removexattr,

endif

.listxattr = zpl_xattr_list,

if defined(CONFIG_FS_POSIX_ACL)

if defined(HAVE_SET_ACL)

.set_acl = zpl_set_acl,

endif / HAVE_SET_ACL /

.get_acl = zpl_get_acl,

endif / CONFIG_FS_POSIX_ACL /

};

const struct inode_operations zpl_symlink_inode_operations = {

ifdef HAVE_GENERIC_READLINK

.readlink = generic_readlink,

endif

if defined(HAVE_GET_LINK_DELAYED) || defined(HAVE_GET_LINK_COOKIE)

.get_link = zpl_get_link,

elif defined(HAVE_FOLLOW_LINK_COOKIE) || defined(HAVE_FOLLOW_LINK_NAMEIDATA)

.follow_link = zpl_follow_link,

endif

if defined(HAVE_PUT_LINK_COOKIE) || defined(HAVE_PUT_LINK_NAMEIDATA)

.put_link = zpl_put_link,

endif

.setattr = zpl_setattr,.getattr = zpl_getattr,

ifdef HAVE_GENERIC_SETXATTR

.setxattr = generic_setxattr,.getxattr = generic_getxattr,.removexattr = generic_removexattr,

endif

.listxattr = zpl_xattr_list,

};

const struct inode_operations zpl_special_inode_operations = {.setattr = zpl_setattr,.getattr = zpl_getattr,

ifdef HAVE_GENERIC_SETXATTR

.setxattr = generic_setxattr,.getxattr = generic_getxattr,.removexattr = generic_removexattr,

endif

.listxattr = zpl_xattr_list,

if defined(CONFIG_FS_POSIX_ACL)

if defined(HAVE_SET_ACL)

.set_acl = zpl_set_acl,

endif / HAVE_SET_ACL /

.get_acl = zpl_get_acl,

endif / CONFIG_FS_POSIX_ACL /

};

dentry_operations_t zpl_dentry_operations = {.d_revalidate = zpl_revalidate,};

file_operations:

extern const struct inode_operations zpl_inode_operations;extern const struct inode_operations zpl_dir_inode_operations;extern const struct inode_operations zpl_symlink_inode_operations;extern const struct inode_operations zpl_special_inode_operations;extern dentry_operations_t zpl_dentry_operations;extern const struct address_space_operations zpl_address_space_operations;extern const struct file_operations zpl_file_operations;extern const struct file_operations zpl_dir_file_operations;

const struct address_space_operations zpl_address_space_operations = {.readpages = zpl_readpages,.readpage = zpl_readpage,.writepage = zpl_writepage,.writepages = zpl_writepages,.direct_IO = zpl_direct_IO,};

const struct file_operations zpl_file_operations = {.open = zpl_open,.release = zpl_release,.llseek = zpl_llseek,

ifdef HAVE_VFS_RW_ITERATE

ifdef HAVE_NEW_SYNC_READ

.read = new_sync_read,.write = new_sync_write,

endif

.read_iter = zpl_iter_read,.write_iter = zpl_iter_write,

ifdef HAVE_VFS_IOV_ITER

.splice_read = generic_file_splice_read,.splice_write = iter_file_splice_write,

endif

else

.read = do_sync_read,.write = do_sync_write,.aio_read = zpl_aio_read,.aio_write = zpl_aio_write,

endif

.mmap = zpl_mmap,.fsync = zpl_fsync,

ifdef HAVE_FILE_AIO_FSYNC

.aio_fsync = zpl_aio_fsync,

endif

.fallocate = zpl_fallocate,.unlocked_ioctl = zpl_ioctl,

ifdef CONFIG_COMPAT

.compat_ioctl = zpl_compat_ioctl,

endif

};

const struct file_operations zpl_dir_file_operations = {.llseek = generic_file_llseek,.read = generic_read_dir,

if defined(HAVE_VFS_ITERATE_SHARED)

.iterate_shared = zpl_iterate,

elif defined(HAVE_VFS_ITERATE)

.iterate = zpl_iterate,

else

.readdir = zpl_readdir,

endif

.fsync = zpl_fsync,.unlocked_ioctl = zpl_ioctl,

ifdef CONFIG_COMPAT

.compat_ioctl = zpl_compat_ioctl,

endif

};

dentry_operations:

typedef const struct dentry_operations dentry_operations_t;

dentry_operations_t zpl_dops_snapdirs = {/*

  • 仅在2.6.37及更高版本的内核中支持快照的自动挂载。
  • 在此之前,ops->follow_link() 回调被用作触发挂载的hack。
  • 结果的vfsmount然后被明确地移植到名称空间中。
  • 虽然可能添加兼容代码来实现这一点,但需要相当小心。*/.d_automount = zpl_snapdir_automount,.d_revalidate = zpl_snapdir_revalidate,};

dentry_operations_t zpl_dentry_operations = {.d_revalidate = zpl_revalidate,};

zfs io(zio) pipeline概述基本功能:

zio服务zfs的所有IO操作,负责将dva(数据虚拟地址)转换为硬件磁盘地址,通过vdevs提供动态压缩、去重、加密和校验等用户空间应用策略,实现镜像和raid z功能。

zfs文件写入过分分析:

zfs系统架构

聊聊zfs中的write

  -------------------system calls---------------------------| |kernel                            +-------------------++-----------|        VFS        |------------+| File      +-------------------+            || Systems            | |                     ||         +-----------------------+          ||         |  ZFS     | |          |          ||         |      +---------+      |          ||         |      |   ZIO   |      |          ||         |      +---------+      |          ||         |      |  vdevs  |      |          ||         +------+---------+------+          ||                    | |                     |+--------------------------------------------+| |+----------------+|  block device  |+----------------+| |+------------+|    SCSI    |+------------+| |+------------+|    SAS     |+------------+| |V |.-----------.-----------|   disk    |-----------

linux kernelsys_write:

当应用程序执行write函数时,会触发sys_write系统调用,具体的系统调用表可参考https://www.php.cn/link/1b7314ae41df37842b9d4e5e279caec1

vfs_write:

vfs层提供统一的写接口,这里提供不同文件系统write的统一接口。

do_sync_write:

同步写接口。其中sys_write/vfs_write/do_sync_write是内核提供的抽象写接口,do_sync_write是内核4.x版本的函数,在5.x版本中是new_sync_write函数。不同版本的linux内核会导致部分系统函数存在差异。以下是参考linux kernel 5的内核代码分析:

// libc提供的write接口SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf, size_t, count) {return ksys_write(fd, buf, count);}

// write函数的系统调用ssize_t ksys_write(unsigned int fd, const char __user *buf, size_t count) {ret = vfs_write(f.file, buf, count, ppos);return ret;}

// 调用实际文件系统的file的write_iter函数,到这里基本完成kernel内核层面的系统调用,接下来就是实际zfs的写函数static inline ssize_t call_write_iter(struct file file, struct kiocb kio, struct iov_iter iter) {// struct file 的f_op是struct file_operations 指针,这个指针保存每个实际文件系统的文件操作的函数,这里需要查看zfs对应的file_opertions函数操作表return file->f_op->write_iter(kio, iter);}

zfs kernel:

zfs写数据过程分为两个阶段:open contextsync context

open context阶段通过系统调用将数据从用户态拷贝到zfs的缓冲区,同时zfs将这些脏数据缓存在DMU中;sync context阶段判断脏数据是否超过4G,如果超过则通过zio批量将数据刷新到磁盘。DMU将数据写入ZIO,在ARC中缓存特定数据,并通知DSL层追踪空间使用。

第一阶段open context阶段是从zfs_write开始。zfs_write分为一个block的全部写和部分写;整块写首先针对块加锁,然后读取,在更改的新数据关联新的buffer;如果是部分写,首先也是读取操作,更改block中的部分内容,标记为脏页。

// z_node代表zfs中的inode,zfs_uio_t 是偏移量和长度// 函数是经过省略的部分。int zfs_write(znode_t zp, zfs_uio_t uio, int ioflag, cred_t cr) {int error = 0;ssize_t start_resid = zfs_uio_resid(uio);ssize_t n = start_resid;if (n == 0)return (0);

zfsvfs_t *zfsvfs = ZTOZSB(zp);const uint64_t max_blksz = zfsvfs->z_max_blksz;if (zfs_uio_prefaultpages(MIN(n, max_blksz), uio)) {    ZFS_EXIT(zfsvfs);    return (SET_ERROR(EFAULT));}const rlim64_t limit = MAXOFFSET_T;if (woff >= limit) {    zfs_rangelock_exit(lr);    ZFS_EXIT(zfsvfs);    return (SET_ERROR(EFBIG));}if (n > limit - woff)    n = limit - woff;uint64_t end_size = MAX(zp->z_size, woff + n);zilog_t *zilog = zfsvfs->z_log;// 文件分割为多个文件chunkwhile (n > 0) {    woff = zfs_uio_offset(uio);    arc_buf_t *abuf = NULL;    if (n >= max_blksz && woff >= zp->z_size &&         P2PHASE(woff, max_blksz) == 0 &&         zp->z_blksz == max_blksz) {        size_t cbytes;        abuf = dmu_request_arcbuf(sa_get_db(zp->z_sa_hdl), max_blksz);        if ((error = zfs_uiocopy(abuf->b_data, max_blksz, UIO_WRITE, uio, &cbytes))) {            dmu_return_arcbuf(abuf);            break;        }        ASSERT3S(cbytes, ==, max_blksz);        // 创建一个事务,表示准备更改操作,是否有空闲的空间        dmu_tx_t *tx = dmu_tx_create(zfsvfs->z_os);        dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);        dmu_buf_impl_t *db = (dmu_buf_impl_t *)sa_get_db(zp->z_sa_hdl);        DB_DNODE_ENTER(db);        dmu_tx_hold_write_by_dnode(tx, DB_DNODE(db), woff, MIN(n, max_blksz));        // 等到喜爱一个可用的事务组,检查是否有足够空间和内存        error = dmu_tx_assign(tx, TXG_WAIT) {            dmu_tx_wait(tx) {                dmu_tx_delay(tx, dirty);            }        }        if (error) {            dmu_tx_abort(tx);            if (abuf != NULL)                dmu_return_arcbuf(abuf);            break;        }        if (lr->lr_length == UINT64_MAX) {            uint64_t new_blksz;            if (zp->z_blksz > max_blksz) {                new_blksz = MIN(end_size, zp->z_blksz));            } else {                new_blksz = MIN(end_size, max_blksz);            }            zfs_grow_blocksize(zp, new_blksz, tx);            zfs_rangelock_reduce(lr, woff, n);        }        const ssize_t nbytes = MIN(n, max_blksz - P2PHASE(woff, max_blksz));        ssize_t tx_bytes;        if (abuf == NULL) {            tx_bytes = zfs_uio_resid(uio);            zfs_uio_fault_disable(uio, B_TRUE);            // 数据从uio写入到DMU            error = dmu_write_uio_dbuf(sa_get_db(zp->z_sa_hdl), uio, nbytes, tx);            zfs_uio_fault_disable(uio, B_FALSE);

ifdef linux

            if (error == EFAULT) {                dmu_tx_commit(tx);                if (tx_bytes != zfs_uio_resid(uio))                    n -= tx_bytes - zfs_uio_resid(uio);                if (zfs_uio_prefaultpages(MIN(n, max_blksz), uio)) {                    break;                }                continue;            }

endif

            if (error != 0) {                dmu_tx_commit(tx);                break;            }            tx_bytes -= zfs_uio_resid(uio);        } else {            error = dmu_assign_arcbuf_by_dbuf(sa_get_db(zp->z_sa_hdl), woff, abuf, tx) {                dmu_assign_arcbuf_by_dnode(DB_DNODE(dbuf), offset, buf, tx) {                    dbuf_assign_arcbuf(db, buf, tx) {                        // 标记脏的dbuf                        (void) dbuf_dirty(db, tx);                    }                }            }            if (error != 0) {                dmu_return_arcbuf(abuf);                dmu_tx_commit(tx);                break;            }        }        error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);        // zfs log写入        zfs_log_write(zilog, tx, TX_WRITE, zp, woff, tx_bytes, ioflag, NULL, NULL);        dmu_tx_commit(tx);    }    if (ioflag & (O_SYNC | O_DSYNC) || zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)        // zfs intent log写入,更改数据写到磁盘之前必须先保证日志罗盘        zil_commit(zilog, zp->z_id);    ZFS_EXIT(zfsvfs);    return (0);}

}

第二个阶段是sync context阶段,zfs会启动内核线程来同步事务组,然后进入dsl层的同步,在进入DMU层的同步,最后是ZIO的pipeline:

void txg_sync_start(dsl_pool_t dp) {tx->tx_sync_thread = thread_create(NULL, 0, txg_sync_thread, 0) {static void txg_sync_thread(void arg) {for (;;) {clock_t timeout = zfs_txg_timeout * hz;spa_sync(spa, txg);// 找到脏的数据集,call dsl_datasetsync->dmu_objset_sync->zio pipelinetxg_dispatch_callbacks(dp, txg);}}}}

以上就是聊聊zfs中的write的详细内容,更多请关注创想鸟其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/18586.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2025年10月31日 21:51:50
下一篇 2025年10月31日 21:52:41

相关推荐

  • Uniapp 中如何不拉伸不裁剪地展示图片?

    灵活展示图片:如何不拉伸不裁剪 在界面设计中,常常需要以原尺寸展示用户上传的图片。本文将介绍一种在 uniapp 框架中实现该功能的简单方法。 对于不同尺寸的图片,可以采用以下处理方式: 极端宽高比:撑满屏幕宽度或高度,再等比缩放居中。非极端宽高比:居中显示,若能撑满则撑满。 然而,如果需要不拉伸不…

    2025年12月24日
    400
  • 如何让小说网站控制台显示乱码,同时网页内容正常显示?

    如何在不影响用户界面的情况下实现控制台乱码? 当在小说网站上下载小说时,大家可能会遇到一个问题:网站上的文本在网页内正常显示,但是在控制台中却是乱码。如何实现此类操作,从而在不影响用户界面(UI)的情况下保持控制台乱码呢? 答案在于使用自定义字体。网站可以通过在服务器端配置自定义字体,并通过在客户端…

    2025年12月24日
    800
  • 如何在地图上轻松创建气泡信息框?

    地图上气泡信息框的巧妙生成 地图上气泡信息框是一种常用的交互功能,它简便易用,能够为用户提供额外信息。本文将探讨如何借助地图库的功能轻松创建这一功能。 利用地图库的原生功能 大多数地图库,如高德地图,都提供了现成的信息窗体和右键菜单功能。这些功能可以通过以下途径实现: 高德地图 JS API 参考文…

    2025年12月24日
    400
  • 如何使用 scroll-behavior 属性实现元素scrollLeft变化时的平滑动画?

    如何实现元素scrollleft变化时的平滑动画效果? 在许多网页应用中,滚动容器的水平滚动条(scrollleft)需要频繁使用。为了让滚动动作更加自然,你希望给scrollleft的变化添加动画效果。 解决方案:scroll-behavior 属性 要实现scrollleft变化时的平滑动画效果…

    2025年12月24日
    000
  • 如何为滚动元素添加平滑过渡,使滚动条滑动时更自然流畅?

    给滚动元素平滑过渡 如何在滚动条属性(scrollleft)发生改变时为元素添加平滑的过渡效果? 解决方案:scroll-behavior 属性 为滚动容器设置 scroll-behavior 属性可以实现平滑滚动。 html 代码: click the button to slide right!…

    2025年12月24日
    500
  • 如何选择元素个数不固定的指定类名子元素?

    灵活选择元素个数不固定的指定类名子元素 在网页布局中,有时需要选择特定类名的子元素,但这些元素的数量并不固定。例如,下面这段 html 代码中,activebar 和 item 元素的数量均不固定: *n *n 如果需要选择第一个 item元素,可以使用 css 选择器 :nth-child()。该…

    2025年12月24日
    200
  • 使用 SVG 如何实现自定义宽度、间距和半径的虚线边框?

    使用 svg 实现自定义虚线边框 如何实现一个具有自定义宽度、间距和半径的虚线边框是一个常见的前端开发问题。传统的解决方案通常涉及使用 border-image 引入切片图片,但是这种方法存在引入外部资源、性能低下的缺点。 为了避免上述问题,可以使用 svg(可缩放矢量图形)来创建纯代码实现。一种方…

    2025年12月24日
    100
  • 如何让“元素跟随文本高度,而不是撑高父容器?

    如何让 元素跟随文本高度,而不是撑高父容器 在页面布局中,经常遇到父容器高度被子元素撑开的问题。在图例所示的案例中,父容器被较高的图片撑开,而文本的高度没有被考虑。本问答将提供纯css解决方案,让图片跟随文本高度,确保父容器的高度不会被图片影响。 解决方法 为了解决这个问题,需要将图片从文档流中脱离…

    2025年12月24日
    000
  • 为什么 CSS mask 属性未请求指定图片?

    解决 css mask 属性未请求图片的问题 在使用 css mask 属性时,指定了图片地址,但网络面板显示未请求获取该图片,这可能是由于浏览器兼容性问题造成的。 问题 如下代码所示: 立即学习“前端免费学习笔记(深入)”; icon [data-icon=”cloud”] { –icon-cl…

    2025年12月24日
    200
  • 如何利用 CSS 选中激活标签并影响相邻元素的样式?

    如何利用 css 选中激活标签并影响相邻元素? 为了实现激活标签影响相邻元素的样式需求,可以通过 :has 选择器来实现。以下是如何具体操作: 对于激活标签相邻后的元素,可以在 css 中使用以下代码进行设置: li:has(+li.active) { border-radius: 0 0 10px…

    2025年12月24日
    100
  • 如何模拟Windows 10 设置界面中的鼠标悬浮放大效果?

    win10设置界面的鼠标移动显示周边的样式(探照灯效果)的实现方式 在windows设置界面的鼠标悬浮效果中,光标周围会显示一个放大区域。在前端开发中,可以通过多种方式实现类似的效果。 使用css 使用css的transform和box-shadow属性。通过将transform: scale(1.…

    2025年12月24日
    200
  • 为什么我的 Safari 自定义样式表在百度页面上失效了?

    为什么在 Safari 中自定义样式表未能正常工作? 在 Safari 的偏好设置中设置自定义样式表后,您对其进行测试却发现效果不同。在您自己的网页中,样式有效,而在百度页面中却失效。 造成这种情况的原因是,第一个访问的项目使用了文件协议,可以访问本地目录中的图片文件。而第二个访问的百度使用了 ht…

    2025年12月24日
    000
  • 如何用前端实现 Windows 10 设置界面的鼠标移动探照灯效果?

    如何在前端实现 Windows 10 设置界面中的鼠标移动探照灯效果 想要在前端开发中实现 Windows 10 设置界面中类似的鼠标移动探照灯效果,可以通过以下途径: CSS 解决方案 DEMO 1: Windows 10 网格悬停效果:https://codepen.io/tr4553r7/pe…

    2025年12月24日
    000
  • 使用CSS mask属性指定图片URL时,为什么浏览器无法加载图片?

    css mask属性未能加载图片的解决方法 使用css mask属性指定图片url时,如示例中所示: mask: url(“https://api.iconify.design/mdi:apple-icloud.svg”) center / contain no-repeat; 但是,在网络面板中却…

    2025年12月24日
    000
  • 如何用CSS Paint API为网页元素添加时尚的斑马线边框?

    为元素添加时尚的斑马线边框 在网页设计中,有时我们需要添加时尚的边框来提升元素的视觉效果。其中,斑马线边框是一种既醒目又别致的设计元素。 实现斜向斑马线边框 要实现斜向斑马线间隔圆环,我们可以使用css paint api。该api提供了强大的功能,可以让我们在元素上绘制复杂的图形。 立即学习“前端…

    2025年12月24日
    000
  • 图片如何不撑高父容器?

    如何让图片不撑高父容器? 当父容器包含不同高度的子元素时,父容器的高度通常会被最高元素撑开。如果你希望父容器的高度由文本内容撑开,避免图片对其产生影响,可以通过以下 css 解决方法: 绝对定位元素: .child-image { position: absolute; top: 0; left: …

    2025年12月24日
    000
  • CSS 帮助

    我正在尝试将文本附加到棕色框的左侧。我不能。我不知道代码有什么问题。请帮助我。 css .hero { position: relative; bottom: 80px; display: flex; justify-content: left; align-items: start; color:…

    2025年12月24日 好文分享
    200
  • 前端代码辅助工具:如何选择最可靠的AI工具?

    前端代码辅助工具:可靠性探讨 对于前端工程师来说,在HTML、CSS和JavaScript开发中借助AI工具是司空见惯的事情。然而,并非所有工具都能提供同等的可靠性。 个性化需求 关于哪个AI工具最可靠,这个问题没有一刀切的答案。每个人的使用习惯和项目需求各不相同。以下是一些影响选择的重要因素: 立…

    2025年12月24日
    000
  • 如何用 CSS Paint API 实现倾斜的斑马线间隔圆环?

    实现斑马线边框样式:探究 css paint api 本文将探究如何使用 css paint api 实现倾斜的斑马线间隔圆环。 问题: 给定一个有多个圆圈组成的斑马线图案,如何使用 css 实现倾斜的斑马线间隔圆环? 答案: 立即学习“前端免费学习笔记(深入)”; 使用 css paint api…

    2025年12月24日
    000
  • 如何使用CSS Paint API实现倾斜斑马线间隔圆环边框?

    css实现斑马线边框样式 想定制一个带有倾斜斑马线间隔圆环的边框?现在使用css paint api,定制任何样式都轻而易举。 css paint api 这是一个新的css特性,允许开发人员创建自定义形状和图案,其中包括斑马线样式。 立即学习“前端免费学习笔记(深入)”; 实现倾斜斑马线间隔圆环 …

    2025年12月24日
    100

发表回复

登录后才能评论
关注微信