前端知识
文章平均质量分 64
Amazing66
这个作者很懒,什么都没留下…
展开
-
vue build之后 无法访问element ui图标
前后端分离 项目部署 有两种方式第一种是将build之后的dist文件夹放在springboot应用的static文件夹下 使用tomcat启动第二种是使用nginx启动而放在springboot应用中 使用tomcat启动 会出现无法访问element图标、字体的错误方法一使用maven资源过滤配置 这种方式适合于资源被过滤的情况 <build> <plugins> <plugin>原创 2021-12-27 11:55:13 · 566 阅读 · 0 评论 -
Springboot文件上传与下载 以及页面内容的导出
需要用到的jar包依赖主要如下<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org原创 2021-11-26 16:40:30 · 1011 阅读 · 0 评论 -
html实现文字移动的特效
HTML文字移动特效代码一、从右向左移 <marquee direction=left>需要移动的文字</marquee>二、从左向右移 <marquee direction=right>需要移动的文字</marquee>三、一圈一圈绕着移动 <marquee direction=scroll>需要移动的文字</marquee> 四、只移动三次就停了&原创 2021-11-25 10:26:07 · 5168 阅读 · 0 评论 -
js相关知识
方式一使用原生js 通过标签绑定事件 声明方法的方式来触发 这里的方法名和声明的名称要一致,并且声明的名称一定是名称+括号的形式 如 onclick=“test1()”<body><div> <button onclick="test1()"> 点我</button></div><script> function test1(){ alert('点击一下') }</scr原创 2021-10-12 17:44:44 · 121 阅读 · 0 评论 -
使用Element UI实现分页
s第一步、引入Element ui 注意:js的引入要在Vue.js的后面<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css"><script src="https://unpkg.com/element-ui/lib/index.js"></script>第二步、引入分页模板<el-pagination backgroun.原创 2021-08-30 10:46:39 · 9126 阅读 · 0 评论 -
Ajax基本格式
$.ajax({ url : "http://localhost:8080/user/login", //请求地址 dataType : "json", //返回数据格式 async : true , //是不是异步请求 默认异步 data : {username:username,password:password}, //参数传递 type : "post", //请求方式 success:function (res){ ..原创 2021-08-22 18:34:43 · 1613 阅读 · 1 评论