baozhengrui

导航

2024年8月15日 #

超出隐藏

摘要: text-overflow: ellipsis; // 省略号代替溢出部分 overflow: hidden; width: 100px; direction: rtl; /* 文本方向从右到左,使得最后一个字符显示出来 */ // white-space:nowrap 防止换行 // text-o 阅读全文

posted @ 2024-08-15 17:02 芮艺 阅读(5) 评论(0) 推荐(0) 编辑

点击识别按钮调用后端接口,中途按下结束识别,但是识别还是进行啦js

摘要: 在JavaScript中,如果你想要在点击按钮后调用一个接口,并且在这个过程中按下一个按钮来中断或取消这个请求,你可以使用fetch API来发起请求,并使用AbortController来取消这个请求。以下是一个简单的例子: // 获取按钮元素 const startButton = docume 阅读全文

posted @ 2024-08-15 14:29 芮艺 阅读(7) 评论(0) 推荐(0) 编辑

el-tree前面的复选框不能多选变成单选

摘要: <el-tree :data="dataTree" show-checkbox :default-expand-all="false" :check-strictly="true" node-key="label" ref="tree" highlight-current accordion @no 阅读全文

posted @ 2024-08-15 08:41 芮艺 阅读(33) 评论(0) 推荐(0) 编辑

循环foreach异步请求

摘要: 报错代码: async function delComponent() { slots.title.forEach((item) => { await store.dispatch('delComponent', item.id) }) } delComponent() 正确写法: function 阅读全文

posted @ 2024-08-15 08:34 芮艺 阅读(10) 评论(0) 推荐(0) 编辑