node vue 在操作中遇到的问题及解决方法,陆续补充
程序员文章站
2022-06-04 14:35:43
...
#node vue,用ts 写
ts监听数据变化 resource 这个就是要监听的
@Watch('resource')
getC(){
this.getOption()
console.log("resource:" + this.resource);
}
用avue上传不发送请求
要声明Window
import { AxiosStatic } from "axios";
declare global {
interface Window {
axios: AxiosStatic
}
}
avue发送请求,路径不对
在avue.js中给值,avue.js是导入avue的
import axios from 'axios'
window.axios = axios.create({
baseURL:'http://localhost:3009'
})
Vue项目中eslint提示 ‘xxx’ is defined but never used
在package.json,找到eslintConfig,在rules中加上"no-unused-vars": “off”
"rules": {
"no-unused-vars": "off"
}
设ESLint规则,忽略指定错误,例如no-console
在package.json,找到eslintConfig,在rules中加上 “no-console”: “off”
"rules": {
"no-console": "off"
}
vue中使用jquery报错 $ is not defined
在package.json,找到eslintConfig,加上jquery
"eslintConfig": {
"root": true,
"env": {
"node": true,
"$": true,
"jquery":true
},
‘Swiper’ is defined but never used no-unused-vars
在let Swiper = new Swiper();名字不要一样
let mySwiper = new Swiper();
下一篇: Spark开发中遇到的问题及解决方法