实现蓝墨云

建立一级路由vue-router-demo1
一个vue的单页应用(一级路由)的脚手架程序构建
1.进入某个目录如D:\VueStudy
2.通过命令创建项目:vue init webpack vue-router-demol(后几项都选N)
3.cd进入vue-router-demo1目录
4.安装依赖:npm install
5.运行:npm run dev
6.更改config目录下的index。js文件,将端口改成80ctr+c退出命令

13.png

package.json相当也pom.xml

APP.vue

<template>
<div id="app">
<div class="header">
<router-link to="/">
<img src="./assets/logo.png" class="logo"/>
</router-link>
<router-link to="/task" class="nav-item">任务中心</router-link>
<router-link to="/lib" class="nav-item">库管理</router-link>
<router-link to="/ucenter" class="nav-item">张丽</router-link>
</div>
<div class="container"><router-view></router-view></div>
</div>
</template>
<script>
export default {
name: 'App'
};
</script>
<style>

app {

background-color: rgb(244, 244, 244);
}
.header {
display: flex;
height: 80px;
background-color: #fff;
font-size: 20px;
padding-left: 120px;
align-items: center;
}
.nav-item {
width: 100px;
margin-right: 20px;
}
.logo{
widows: 100px;
height: 35px;
margin-right: 200px;
}
.container {
width: 85%;
margin: 0 auto;
padding-bottom: 40px;
}
a {
text-decoration: none;
color: #aaa;
}
a:hover {
color: rgb(2,165,218);
}
</style>```

index.js类

import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
export default new Router({
// 去除#的hash模式
mode: "history",
routes: [
{
//我的班课
path: '/',
name: 'Index',
component: resolve => require(['../components/Index.vue'], resolve)
},
{
//任务中心
path: '/task',
name: 'Task',
component: resolve => require(['../components/Task.vue'], resolve)
},
{
//库管理
path: '/lib',
name: 'Lib',
component: resolve => require(['../components/Lib.vue'], resolve)
},
{
//个人中心
path: '/ucenter',
name: 'UCenter',
component: resolve => require(['../components/UCenter.vue'], resolve)

    },
    {
        //新建班课
        path: '/new_course',
        name: 'NewCourse',
        component: resolve => require(['../components/NewCourse.vue'], resolve)
    },
    {
        //班课详情
        path: '/course/:id',
        name: 'CourseDetail',
        component: resolve => require(['../components/CourseDetail.vue'], resolve)
    }
]

})

代码地址:https://github.com/zl0502/VueStudy/tree/master/vue-router-demo1

在spring-boot-mybatis的基础上添加一个UploadController类

package com.springboot.mybatis.controller;
import org.springframework.util.ResourceUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.UUID;
/**

  • 上传文件控制器
  • 直接上传到服务器
    */

@RestController
public class UploadController {
//指定一个临时路径作为上传目录
//private static String UPLOAD_FOLDER = "D:/temp/";
//遇到http://localhost:8080,则跳转至upload.html页面
@GetMapping("/")
public String index() {
return "upload";
}
@PostMapping("upload")
public String fileUpload(@RequestParam("file")MultipartFile srcFile, RedirectAttributes redirectAttributes) {
String returnFileName="";
//前端没有选择文件,srcFile为空
if (srcFile.isEmpty()) {
redirectAttributes.addFlashAttribute("message", "请选择一个文件");
// return "redirect:upload_status";
}
//选择了文件,开始上传操作
try {
//构建上传目标路径,找到了项目的target的classes目录
File destFile = new File(ResourceUtils.getURL("classpath:").getPath());
if (!destFile.exists()) {
destFile = new File("");
}
//输出目标文件的绝对路径
System.out.println("file path:" + destFile.getAbsolutePath());
//拼接子路径
SimpleDateFormat sf_ = new SimpleDateFormat("yyyyMMdd");
String times = sf_.format(new Date());
File upload = new File(destFile.getAbsolutePath(), "upload/" + times);
//若目标文件夹不存在,则创建
if (!upload.exists()) {
upload.mkdirs();
}
System.out.println("完整的上传路径:" + upload.getAbsolutePath() + "/" + srcFile);
//根据srcFile大小,准备一个字节数组
byte[] bytes = srcFile.getBytes();
//拼接上传路径
//Path path = Paths.get(UPLOAD_FOLDER + srcFile.getOriginalFilename());
String uuid = UUID.randomUUID().toString().replaceAll("-", "");
// 获得文件原始名称
String fileName = srcFile.getOriginalFilename();
// 获得文件后缀名称
String suffixName = fileName.substring(fileName.lastIndexOf(".") + 1).toLowerCase();
// 生成最新的uuid文件名称
String newFileName = uuid + "." + suffixName;
//通过项目路径,拼接上传路径
Path path = Paths.get(upload.getAbsolutePath() + "/" + newFileName);
//** 开始将源文件写入目标地址
Files.write(path, bytes);
redirectAttributes.addFlashAttribute("message", "文件上传成功" + newFileName);
returnFileName="http://localhost:8080/upload/"+newFileName;
} catch (IOException e) {
e.printStackTrace();
}
return returnFileName;
}
//匹配upload_status页面
@GetMapping("upload_status")
public String uploadStatusPage() {
return "upload_status";
}
}

Task类

<template>
<div class="container">
<h2>任务中心</h2>
<div class="preview">
<img :src="imgUrl" />
</div>
<form>
<div class="upload">

<input type="file" @change="getFile(event)"/> </div> <br /> <button @click="submit(event)" class="sub-btn">提交</button>
</form>
</div>
</template>
<script>
export default {
name: 'Task',
data() {
return {
imgUrl:'https://static-cdn-oss.mosoteach.cn/mssvc/icons/icon_cc_cover1@2x.png',
file:''
};
},
methods:{
// 图片预览
getFile:function(event){
this.file=event.target.files[0];
var windowURL=window.URL||window.webkitURL;
alert(windowURL.createObjectURL(this.file));
this.imgUrl=windowURL.createObjectURL(this.file);
},
submit:function(event){
// 阻止元素发生默认的行为
event.preventDefault();
let formDate=new FormData();
formDate.append('file',this.file);
this.$http.post('http://localhost:8080/upload',formDate).then(function(response){
alert(response.data);
this.imgUrl=response.data;
});
}
}
};
</script>
<style scoped>

.preview{
    width:300px;
    height: 300px;
}
.preview img{
    width: 100%;
    height: 100%;
}
.sub-btn{
    width: 120px;
    height: 35px;
    border-radius: 20px;
    outline: none;
    background-color: #FFE4C4;
    color: #FFFFFF;
    position: relative;
    top: 20px;
}
.upload{
    margin-top: 10px;
    display: inline-block;
    width: 120px;
    height: 35px;
    border: 1px solid #00BBDD;
    border-radius: 4px;
    /* background-color: #42B983; */
    color: #000;
    text-align: center;
    cursor: pointer;
}
.upload input{
    width: 100%;
    height: 100%;
    /* 透明度 */
    opacity: 0;
}
.upload:hover{
    background: #aadffd;
    border-color: bisque;
    color: coral;
    text-decoration: none;
}

</style>

运行的结果是:实现图片的预览

22.png

可以换图片,但是只能预览,没有上传到数据库

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,772评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,458评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,610评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,640评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,657评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,590评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,962评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,631评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,870评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,611评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,704评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,386评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,969评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,944评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,179评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,742评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,440评论 2 342

推荐阅读更多精彩内容