logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

then和$.when在ajax中的使用

then在then中可以分别注册,成功,失败,进行中的函数。在Jq的链式调用then的时候,只有返回一个promise时,下一个then注册的回调函数才能使用回调结果,否则只会依次触发回调函数而没有回调结果。案例:不用then$.ajax({url:'https://autumnfish.cn/api/hero/simple',type:'get'...

#jquery
Vue3.x属性继承报错解决

编写vue组件的时候莫名报了下面的警告:[Vue warn]: Extraneous non-props attributes (border, style) were passed to component but could not be automatically inherited because component renders fragment or text root nodes.

Vue3.x属性继承报错解决

编写vue组件的时候莫名报了下面的警告:[Vue warn]: Extraneous non-props attributes (border, style) were passed to component but could not be automatically inherited because component renders fragment or text root nodes.

解决vue中axios设置超时无效的问题

现在有一个大概需要6分钟才返回结果的接口,查看axios官方文档默认是1000毫秒,于是我改成了30分钟:const http = axios.create({timeout: 30 * 60 * 1000,headers: {'Content-Type': 'application/json','X-Requested-With': 'XMLHttpRequest'}})但是在请求接口的时候,2

#vue.js
webpack插件之html-webpack-plugin

html-webpack-plugin的作用html-webpack-plugin的主要作用就是在webpack构建后生成html文件,同时把构建好入口js文件引入到生成的html文件中。安装html-webpack-pluginWebpack 5npm i --save-dev html-webpack-pluginyarn add --dev html-webpack-pluginWebpac

#webpack
到底了