欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 健康 > 养生 > 模版字符串复制粘贴支持换行

模版字符串复制粘贴支持换行

2025/1/23 18:20:39 来源:https://blog.csdn.net/socaicaicaicai/article/details/145263673  浏览:    关键词:模版字符串复制粘贴支持换行

模版字符串复制粘贴支持换行

  • 模版字符串复制粘贴支持换行

根据后端返回字段,获取对应字段的值,生成模版进行复制粘贴出来!

模版字符串复制粘贴支持换行

后端返回类型:
const arr = ['test','test1','test2','test3',
]const copyProp = [{ prop: 'test', label: '测试' },{ prop: 'test1', label: '测试1' },{ prop: 'test2', label: '测试2' },{ prop: 'test3', label: '测试3' }
]template:
<button :title="$lang('一键复制')" class="el-button el-button--text el-button--small" type="button"><i class="icon-iconfont iconfont iconbiaodan-chushen font-16" @click="handleCopy(row)"></i>
</button>
script:// 一键复制handleCopy(row) {// 处理复制模版const templateList = []this.arr.map((item) => {const [label] = copyProp.filter((i) => i.prop === item).map(v => v.label)templateList.push(`${label} : ${row[item] || ''}`)})templateList.push(this.msg) // 增加后面固定提示语const template = '' + `${templateList.join('\n')}`oneClickReplication(template)},
/**** @param {*} 点击复制*/
export const oneClickReplication = template => {var textareaC = document.createElement('textarea')textareaC.setAttribute('readonly', 'readonly') // 设置只读属性防止手机上弹出软键盘textareaC.value = templatedocument.body.appendChild(textareaC) // 将textarea添加为body子元素textareaC.select()if (document.execCommand('copy')) {document.execCommand('copy')document.body.removeChild(textareaC)// 移除DOM元素vm.$message.success(vm.$lang('复制成功'))}
};

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com