logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

这次彻底搞懂async&await

1.async 函数返回一个promise对象,可以使用then方法添加回调函async function show() {return {a:23,b:34}}console.log(show()) // //Promise {<fulfilled>: {…}}show().then(res=>{console.log('res',res) // res {a: 23, b:

文章图片
那些年使用vue-pdf踩过的坑

最近在vue项目中需要在线预览word,excel,ppt和pdf文件,思来想去最后决定使用vue-pdf来实现pdf文件在原页面中弹窗显示,而其他格式的文件直接跳转新页面预览。效果图1.首先在项目中安装vue-pdfnpm install vue-pdf --save2.在页面引入element-ui的弹窗组件(.vue)<el-dialog title="...

那些年使用vue-pdf踩过的坑

最近在vue项目中需要在线预览word,excel,ppt和pdf文件,思来想去最后决定使用vue-pdf来实现pdf文件在原页面中弹窗显示,而其他格式的文件直接跳转新页面预览。效果图1.首先在项目中安装vue-pdfnpm install vue-pdf --save2.在页面引入element-ui的弹窗组件(.vue)<el-dialog title="...

如何在前端显示后端返回的图片流(以Vue为例)

我们在前端显示图片一般用法是这样的<template><el-carousel :interval="4000" type="card" height="310px" :autoplay="true"><el-carousel-item v-for="item in dataList" :key="item.url" @click.native="jump(item)

到底了