Videojs控件栏自定义按钮
有个需求需要在视频的控件里加个按钮,点击可以切换,简单记录一下
有个需求需要在视频的控件里加个按钮,点击可以切换,简单记录一下
1 | internal/validators.js:112 |
找到nrm安装位置,打开cli.js
修改第17行
windows下目录在C:\Users\用户名\AppData\Roaming\npm\node_modules\nrm\
1 | //const NRMRC = path.join(process.env.HOME, '.nrmrc'); (删除) |
今天fork了一份RSSHub准备玩一下,发现 npm i
的时候一直报错
1 | node-pre-gyp WARN Using request for node-pre-gyp https download |
在Windows下安装到一些库时,需要编译,所以要按相关环境
CMD
npm install --g --production windows-build-tools
1 | ---------- Visual Studio Build Tools ---------- |
再次执行npm i
就成功了
不跨域的情况下在父页面覆盖iframe中的css样式
在.Vue
文件中可以直接使用$t
方法调用,在js文件中需要把Vue-i18nimport
进来,再调用
1 | // 根据自己具体代码引入vue-i18n |
使用create-react-app
搭建 react 项目时报错
create-react-app : 无法加载文件 C:\Users\wy\AppData\Roaming\npm\create-react-app.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
使用Flv.js做直播,最近发现进入页面后不能自动播放。
查询了一下发现是因为Chrome autoplay policy的影响。
由于项目的视频不需要播放音频,所以直接给video
标签加上muted
属性,进入后可以自动播放。
在做编辑页面时
需要取到列表项数据回显默认值
在做select回显的时候遇到了这个问题
明明拿到的值和value中的值一样
但是就是不转换成label
这种情况一般出现在value为数字的情况
今天启动vue遇到了一个错误
1 | [Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build. |
根据错误提示和搜索知之后得出结论:是项目引入的vue编译版本不对导致的