诺米 的文章
-
vue适配自动跳转移动端页面
update router.js import Vue from 'vue' import Router from 'vue-router' import HelloWorld from '@/components/pc/HelloWorld' Vue.use(Router)…… -
-
docker容器迁移
把容器从一台服务器迁移到另一台服务器,分以下五个步骤1、容器打包成镜像 # docker commit -m “” -a “” [CONTAINER ID] [新的镜像名] ,其中-m和-a是可选参…… -
-
-
Java上传图片角度旋转(无损)
1、旋转工具类 package com.ruoyi.common.file.util; /** * @author :wt * @date :Created in 2022/6/29 22:44 * @description: * @modified …… -
npm ERR! code ERESOLVE
vue安装命令, npm install时报错: D:\workspace\IM\websocket-master>npm install npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve depende…… -
.jar中没有主清单属性
如果您使用的是Springboot,那么只需要在pom.xml中添加如下配置,会自动检测主类。 <build> <plugins> <plugin> <groupId>org.spring…… -
wordpress建站教程:给注册页面添加数学题验证码
为了避免一些恶意注册,进一步提升网站安全性能,这里说明下给wordpress注册页面添加数学题验证码的方法: 只需把下面的代码添加到当前的wordpress建站主题fun…… -
uniapp实现小程序登录(支持手机号授权登录)
第一步.前端处理 页面登录按钮 <!--第一种:手机号授权登录--> <button size="lg" class="white br60 row-center btn" open-type=……