程序员杂文小品简友广场

20-09错误记录

2020-09-21  本文已影响0人  斯空拂

2020-09-07


text类型的文件输出

网上搜索解决方法,如下:


参考办法

使用后无效。
最后确定,是text的编码问题,将text文件的编码保存为utf-8,乱码问题解决。

2020-09-14


image.png

如上,当引用在这里时,页面无效果

image.png

如上,引用在这里,有效果。

image.png

如上,此时js文件代码。

改:(这是js是否在页面进入就加载的问题)

image.png

如上,将js先加载,html代码中就可以在上面引用js文件了。解决

2020-09-15


Module Error (from ./node_modules/eslint-loader/index.js):

网上解决办法:

image.png

该问题解决。

2020-09-16


网上搜寻方案:

  1. 无效
image.png
  1. 无效
image.png
  1. 有人提出是版本问题,vue-awesome-swuper需要5.x一下的swiper版本,于是重新下载版本如下:
image.png

下载后引入报错,关键在于官网该版本的引入方式是:

import { Swiper, SwiperSlide, directive } from 'vue-awesome-swiper'

import 'swiper/css/swiper.css'

而第二个引入报错,于是我找了更前版本地引入方式,结果成功了。

import { Swiper, SwiperSlide, directive } from 'vue-awesome-swiper'
import 'swiper/dist/css/swiper.css'

原因:路径问题。

于是,该问题解决。

2020-09-17


: Fullpage.js version 3 has changed its license to GPLv3 and it requires a `

网上解决办法:

image.png

替换代码:

if(l && l.length <  20){

  console.warn('%c This website was made using fullPage.js slider. More info on the following website:', msgStyle);

  console.warn('%c https://alvarotrigo.com/fullPage/', msgStyle);

}

已解决。

上一篇下一篇

猜你喜欢

热点阅读