自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(27)
  • 收藏
  • 关注

原创 6月6的笔记?

1

2022-06-06 04:51:50 156 1

原创 待解决问题7:路由重复点击的问题

报错代码Uncaught (in promise) NavigationDuplicated: Avoided redundant navigation to current location: "/home/message/detail?id=001&title=%E6%B6%88%E6%81%AF001".重复点击路由时会有警告How?看链接:https://blog.csdn.net/qq_35393869/article/details/122881393?ops_request

2022-05-25 07:07:36 178

原创 待解决问题6:computed和watch区别

computed和watch区别computed:计算属性,有缓存机制,不能异步操作watch:监视属性,有深度监视,可以异步操作何为异步操作?延迟3秒显示结果算?

2022-05-18 09:03:08 119

原创 Vue学习笔记_服务器_

What?vue报错 Can‘t resolve ‘axios‘ in ‘C:\vue\ xxxWhy?没有安装axiosHow?npm install --save axios引入import axios from ‘axios’

2022-05-17 10:40:46 165

原创 Vue学习笔记_欠缺知识_动画效果-待解决问题:transition和animation区别

What?如何实现Vue的动画效果How?html:标签css:@keyframes xxx{}

2022-05-16 20:13:38 105

原创 待解决问题5:动画属性

transition、transform、animation三个属性?

2022-05-16 19:25:22 105

原创 Vue学习笔记_手贱报错_webpack

报错BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.This is no longer the case. Verify if you need this module and configure a polyfill for it.If you want to include a polyfill, you need to: - add a f

2022-05-15 11:31:01 453

原创 待解决问题4:函数调用加不加括号

14_src_TodoList_消息订阅与发布 发现在mounted中的pubsub.subscribe中调用this.demo方法不能加括号除了模板中的方法调用需要传参+括号在Vue中的方法,生命周期中调用函数都不需要+括号,即使传参这个对吗?...

2022-05-15 01:26:26 122

原创 Vue中src更名失败

Vue中src更名失败:报错如下Error: EPERM: operation not permitted(权限不够 errro permit)解决:在我的文件夹中更名

2022-05-14 02:09:10 501 1

原创 待解决问题3:reduce方法

reduce数组方法,条件统计,再深入理解一下

2022-05-14 00:41:30 92

原创 待解决问题2:前端开发数组

前端开发人员常用到数组方法,面试经常考,要多练多用多学!引用:https://blog.csdn.net/walk_man_3/article/details/53994048?ops_request_misc=&request_id=&biz_id=102&utm_term=%E5%89%8D%E7%AB%AF%E5%BC%80%E5%8F%91%E4%BD%BF%E7%94%A8%E7%9A%84%E6%95%B0%E7%BB%84%E6%96%B9%E6%B3%95&amp

2022-05-14 00:30:12 78

原创 v-for渲染列表key值报错

What:报错Avoid using non-primitive value as key, use string/number value instead.Why:在for循环中,key值可能重复或者写错了How:检查Vue开发者工具发现新增item的key值被定义为对象了,去找新增item的代码发现是插件nanoid用法错误这才是正确的。...

2022-05-13 20:32:10 432

原创 待解决问题1:scoped

App.vue中设置<style scoped> .title{ color: red; }</style>在App的子组件中<template> <div class="demo"> <h2 class="title">学生姓名:{{name}}</h2> <h2>学生性别:{{sex}}</h2> </div></template&

2022-05-13 02:00:16 91

原创 问题:error: EPERM: operation not permitted, open ‘D:\node\node_cache\_cacache\tmp\c184ef70‘

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档问题:error: EPERM: operation not permitted, open ‘D:\node\node_cache_cacache\tmp\c184ef70’What?实现npm view webpack versions查看版本号,但是报错Why?权限不足How?1.删除.npmrc文件(不行)2.仔细读错误:是D:\node\node_cache,这个文件重复了...

2022-05-13 01:29:54 566

原创 sublime设置快捷键chrome浏览器

一.在线安装打开Sublime,然后从菜单 View - Show Console 或者Ctrl+~(打开控制台),把下面这段python命令复制进去。import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.requ...

2020-01-28 15:21:53 465

转载 Error:Unsupported method: BaseConfig.getApplicationIdSuffix().

转载出处:https://blog.csdn.net/rjc_lihui/article/details/78434864遇到此问题我的做法如下:将 build.gradle 中的buildscript { repositories { mavenCentral() } dependencies { classpath ...

2018-03-22 19:32:24 450

原创 Error:Failed to open zip file. Gradle's dependency cache may be corrupt (this sometimes occurs after

Error:Failed to open zip file.Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)&lt;a href="syncProject"&gt;Re-download dependencies and sync projec...

2018-03-22 19:27:56 218

原创 OkHttpClient之修改头像如何上传给后台

第一步 创建OkHttpClient对象使用构造方法直接创建OkHttpClientOkHttpClient client = new OkHttpClient();使用Builder模式创建对象OkHttpClient.Builder builder = new OkHttpClient.Builder();//先创建构建者对象builder.connectTim...

2018-03-17 14:40:25 368

原创 ViewPager+ListView的使用

android.content.res.Resources$NotFoundException: String resource ID #0x64错误原因: public int getPrice_demand() { return price_demand; } 结果写了viewHolder.text_price.setText(personBean.

2018-01-14 20:23:25 562

原创 android studio中出现Error:Already finished

困惑如上图解决:Restart一下即可 分析:可能是.gradle出错,Restart之后系统帮你重新下载gradle

2018-01-13 17:08:04 3207

原创 解决github不能上传代码的问题

常规操作 $git pull http://你要下拉的项目地址$git add . (add和.之间需要一个空格)$git commit -m “注释” 出现这个错误 解决方法: $git config –global user.email”你的邮箱”$git config –local -1 原因:可能是之前的email address出错,通过全局配置来修复它

2018-01-06 15:39:30 3077

原创 搞定Android null requires the IDE to be running with Java 1.8 or later

AS里面我们需要两个JDK:Project JDK & IDE JDK前者用于编译Java代码后者用于启动运行AS自己Project JDK可以通过file-> other settings-> default project structure 里面查看修改通过更改JDK的版本IDE JDK这个问题的主要原因就是因为ID

2018-01-04 17:24:53 346

原创 GsonFormat threw an uncaught Plugin Exception

出错原因:当前android studio版本和GsonFormat的版本不一致,导致不兼容。1.下载旧版本的GsonFormat版本,地址为          https://plugins.jetbrains.com/plugin/7654?pr=androidstudio,找到1.2.2下载2.android studio-->File-->settings-->Plug

2017-12-17 22:08:59 428

原创 android studio 提示IDE出现错误,或输入代码没有提示

解决方法:左上角File-->Power save mode将其取消打勾即可。原因:AS设置成省电模式,所以会取消辅助功能,如自动提示等等。

2017-12-04 11:33:09 14904 1

原创 IO流之学习(—)

IO流是一种对数据进行处理的流,按照分类分为字节流和字符流。字节流是数据存储在磁盘/电脑的格式,字符流是程序员输入输出的数据格式。直白点说,字节流是电脑看得懂,字符流是程序员看得懂。字节流和字符流两者的相似之处很多,学透其中一种流,另一种自然也能够驾驭。字节流分为输出流(写)和输入流(读):字节输出流OutputStream类是一个专门进行字节数据输出的类。字节输出

2017-11-23 14:12:32 343

原创 Error:(6) Error parsing XML: XML or text declaration not at start of entity

布局错误

2017-11-21 13:55:01 4882

原创 Connection refused connect

Tomcat服务器无法关闭,一直消耗主机内存,到底怎么办?且进来看看

2017-11-18 15:26:56 12737

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除