logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Python 在Terminal上Debug指令-------------pdb

Python不用IDE怎么自己debug呢!java 有 jdbc++ 有 gdbpython 就是 pdb啊指令:python3 -m pdb test.py进入debug模式后,下面是一些在pdb常用的debug指令:(break)在test.py文件的30行设置breakpoint(断点)b test.py:30(continue)让程序一直运行到设置的断点c...

vue得到月份month比是几月份少一个月 解决办法

解决方法:得到月份+1即可let dateObj = new Date();let month = (dateObj.getMonth()+1) < 10?'0'+ (dateObj.getMonth()+1):dateObj.getMonth()+1;原因:vue计算月份时从0开始的,1-12月=0-11月,所以得到三月份其实是四月份注意:年份要用getFullYear()...

audio指定时间播放详解 vue html5

用vue来举例,下面图片是一个简单的audio标签和一个播放按钮<audioref='audioExample'src="www.askdjfaf.com"controls="controls"controlslist="nodownload"></audio><button @...

vue-事件修饰符-详解(.prevent .stop .once .capture .self)

vue事件修饰符-详解.prevent -------等于javascript的event.preventDefault()作用:阻止默认程序的运行<form @submit.prevent="SomeFunction"></form>单独submit点击后会自动进行提交等一系列操作,prevent就可以阻止这些操作,让上面这段代码乖乖执行我们分配给它的Som...

vue的is和v-bind:is怎么用

首先我们要明白v-bind的意义:<component v-bind:is="current"></component>如果出现了v-bind那么加载在这个组件的时候,会去创建的vue实例对象的data里找值:var vm = new Vue({el: '#app',data: function(){return {current: 'sub'...

Devtool inspection is not available because it's in production mode or explicitly disabled by author

在浏览器安装vue Devtools插件后显示Vue.js is detected on this page. Devtools inspection is not available because it’s in production mode or explicitly disabled by the author原因:用的是production mode的vue.js解决办法:下载...

到底了