当前位置: 首页 > article >正文

【Vue】简易博客项目跟做

项目框架搭建

1.使用vue create快速搭建vue项目

在这里插入图片描述

2.使用VC Code打开新生成的项目

在这里插入图片描述

  • 端口号简单配置

修改vue.config.js文件,内容修改如下

在这里插入图片描述

所需库安装

npm install vue-resource --save --no-fund

npm install vue-router@3 --save --no-fund

npm install axios --save --no-fund

关闭eslint检测

修改.eslintrc.js文件,注释掉'eslint:recommended',并在rules中加上"vue/no-unused-components":"off"

不关闭检测,组件注册后未被使用时,会直接报错导致项目无法运行

在这里插入图片描述

前端网站开发

添加博客页

修改App.vue,注册AddBlog组件

<template>
  <div id="app">
    <add-blog></add-blog>
  </div>
</template>

<script>
import AddBlog from './components/AddBlog'
export default {
  name: 'app',
  components: {
    AddBlog
  }
}
</script>

<style>
</style>

编写AddBlog.vue代码

<template>
    <div id="add-blog">
        <h2>添加博客</h2>
        <form v-if="!submited">
            <label>博客标题</label>
            <input type="text" v-model="blog.title" required />
            <label>博客内容</label>
            <textarea v-model="blog.content"></textarea>
            <div id="checkboxes">
                <label>Vue.js</label>
                <input type="checkbox" value="Vue.js" v-model="blog.categories">
                <label>Node.js</label>
                <input type="checkbox" value="Node.js" v-model="blog.categories">
                <label>React.js</label>
                <input type="checkbox" value="React.js" v-model="blog.categories">
                <label>Angular4</label>
                <input type="checkbox" value="Angular4" v-model="blog.categories">
            </div>
            <label>作者:</label>
            <select v-model="blog.author">
                <option v-for="author in authors" :key="author">{{ author }}</option>
            </select>
            <button v-on:click.prevent="post">添加博客</button>
        </form>

        <div v-if="submited">
            <h3>添加成功</h3>
        </div>
        <hr>
        <!-- 展示预览区域 -->
        <div id="preview">
            <h3>博客总览</h3>
            <p>博客标题:{{ blog.title }}</p>
            <p>博客内容:</p>
            <p>{{ blog.content }}</p>
            <p>博客分类:</p>
            <ul>
                <li v-for="category in blog.categories" :key="category">
                    {{ category }}
                </li>
            </ul>
            <p>作者:</p>
            <p>{{ blog.author }}</p>
        </div>

    </div>
</template>

<script>
export default {
    // 测试数据网站:https://jsonplaceholder.typicode.com/posts
    name: 'add-blog',
    data() {
        return {
            blog: {
                title: "",
                content: "",
                categories: [],
                author: ""
            },
            authors: ["cy", "fy", "cyfy"],
            submited: false
        }
    },
    methods: {
        post: function () {
            // 向指定网站发送post请求
            this.$http.post("https://jsonplaceholder.typicode.com/posts", {
                title: this.blog.title,
                body: this.blog.content,
                UserId: 1
            }).then(function (data) {	// 接受网站返回的数据
                this.submited = true;
                // console.log(data);
            });
        }
    }
}
</script>

<style scoped>
/* 针对id=add-blog下所有元素 */
#add-blog * {
    box-sizing: border-box;
}

#add-blog {
    margin: 20px auto;
    max-width: 600px;
    padding: 20px;
}

label {
    display: block;
    margin: 20px 0 10px;
}

input[type="text"],
textarea,
select {
    display: block;
    width: 100%;
    padding: 8px;
}

textarea {
    height: 200px;
}

#checkboxes label {
    display: inline-block;
    margin-top: 0;
}

#checkboxes input {
    display: inline-block;
    margin-right: 10px;
}

button {
    display: block;
    margin: 20px 0;
    background: cyan;
    color: fff;
    border: 0;
    padding: 14px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
}

#preview {
    
    padding: 10px 20px;  		/* 内边距:上下边距 左右边距 */ 
    border: 1px dotted #ccc;	/* 边框设置:边框大小 边框样式 边框颜色 */
    margin: 30px 0;				/* 外边距:上下边距 左右边距 */
}

h3 {
    margin-top: 10px;			/* 上外边距	*/
}
</style>

编写main.js文件,注册使用VueResource组件

import Vue from 'vue'
// 导入vue-resource
import VueResource from 'vue-resource'
import App from './App.vue'
import store from './store'

Vue.config.productionTip = false
// 使用VueResource
Vue.use(VueResource)

new Vue({
  store,
  render: h => h(App),
}).$mount('#app')

运行效果

在这里插入图片描述 --------------------------------------------------
在这里插入图片描述

博客列表页

修改App.vue,注册ShowBlogs组件

<template>
  <div id="app">
    <!-- <add-blog></add-blog> -->
    <show-blogs></show-blogs>
  </div>
</template>

<script>
import AddBlog from './components/AddBlog'
import ShowBlogs from './components/ShowBlogs'

export default {
  name: 'app',
  components: {
    AddBlog,ShowBlogs
  }
}
</script>

<style>
</style>

编写ShowBlogs.vue代码

<template>
  <div v-theme:column="'wide'" id="show-blogs">
    <h1>博客总览</h1>
    <input type="text" v-model="search" placeholder="搜索" />
    <div class="single-blog" v-for="blog in filteredBlogs" :key="blog.id">
        <h2 v-rainbow>{{ blog.title | to-uppercase }}</h2>
        <article>{{ blog.body | snippet }}</article>
    </div>
  </div>
</template>

<script>

export default {
  name: 'show-blogs',
  data() {
    return {
      blogs: [],
      search: ""
    }
  },
  created() {
    this.$http.get('https://jsonplaceholder.typicode.com/posts')
      .then(function (data) {
        // 截取前十条数据,赋值给blogs中
        this.blogs = data.body.slice(0, 10);
      })
  },
  computed: {
    // 过滤博客,筛选出符合条件的博客
    filteredBlogs: function () {
      return this.blogs.filter((blog) => {
        return blog.title.match(this.search) || blog.body.match(this.search);
      })
    }
  },
  filters: {
    // 标题字母全部转换为大写字母
    toUppercase(value) {
      return value.toUpperCase();
    },
    // 博客内容一次仅显示100字符,后面字符用“...”代替
    snippet(value) {
      return value.slice(0, 100) + "...";
    }
  },
  directives: {
    // 标题字体颜色随机
    "rainbow": {
      bind(el, binding, value) {
        el.style.color = "#" + Math.random().toString(16).slice(2, 8);
      }
    },
    // 根据属性值赋予博客列表最大宽度
    "theme": {
      bind(el, binding, value) {
        if (binding.value == 'wide') {
          el.style.maxWidth = "1260px";
        } else if (binding.value == 'narrow') {
          el.style.maxWidth = "560px";
        }
        if (binding.arg == 'column') {
          el.style.background = "#6677cc";
          el.style.padding = '20px';
        }
      }
    }
  }

}
</script>

<style>
#show-blogs {
  max-width: 800px;
  margin: 0 auto;
}

.single-blog {
  padding: 20px;
  margin: 20px 0;
  box-sizing: border-box;
  background: #eee;
  border: 1px dotted #aaa;
}

#show-blogs a {
  color: #444;
  text-decoration: none;
}
    
input[type="text"] {
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
}
</style>

运行效果

在这里插入图片描述搜索
在这里插入图片描述

实现路由跳转

编写main.js文件,注册使用vue-router组件

import Vue from 'vue'
import VueResource from 'vue-resource'
import App from './App.vue'
import store from './store'
// 导入vue-router
import VueRouter from 'vue-router'
// 导入路由配置文件
import Routes from './routes/routes'

Vue.config.productionTip = false

Vue.use(VueResource)
// 使用VueRouter
Vue.use(VueRouter)


// 创建路由
const router = new VueRouter({
  routes:Routes,
  // 去除路径上的#号
  mode:"history"
})


new Vue({
  store,
  render: h => h(App),
  // 注册路由配置
  router:router
}).$mount('#app')

编写routes.js文件,配置路由跳转逻辑

import AddBlog from './../components/AddBlog';
import ShowBlogs from './../components/ShowBlogs';
export default[
    {
        path:"/",
        component:ShowBlogs
    },
    {
        path:"/add",
        component:AddBlog
    }
]

修改App.vue,注册BlogHeader组件实现导航栏功能

<template>
  <div id="app">
    <!-- <add-blog></add-blog> -->
    <!-- <show-blogs></show-blogs> -->
    <blog-header></blog-header>
    <router-view></router-view>
  </div>
</template>

<script>
import AddBlog from './components/AddBlog'
import ShowBlogs from './components/ShowBlogs'
import BlogHeader from './components/BlogHeader'

export default {
  name: 'app',
  components: {
    AddBlog,ShowBlogs,BlogHeader
  }
}
</script>

<style>
</style>

编写BlogHeader.vue代码

<template>
    <nav>
        <ul>
            <li>
                <router-link to="/" exact>博客总览</router-link>
                <router-link to="/add" exact>博客发布</router-link>
            </li>
        </ul>
    </nav>
</template>

<script>
export default({
    name:"blog-header"
})
</script>

<style scoped>
ul{
  /* 去除列表前面的符号“·” */
  list-style-type: none;
  /* 字体居中 */
  text-align:center;
  margin:0;
}
li{
  display: inline-block;
  margin: 0 px;
}
a{
    color:#fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 5px;
}
nav{
    background: crimson;
    padding: 30px 0;
    margin-bottom: 40px;
}
.router-link-active{
    background: rgba(255,255,255,0.8);
    color: #444;
}
</style>

运行效果

在这里插入图片描述在这里插入图片描述

博客详情页

修改routes.js,增加详情页路由配置

import AddBlog from './../components/AddBlog';
import ShowBlogs from './../components/ShowBlogs';
import SingleBlog from './../components/SingleBlog';
export default[
    {
        path:"/",
        component:ShowBlogs
    },
    {
        path:"/add",
        component:AddBlog
    },
    {
        path:"/blog/:id",component:SingleBlog
    }
]

编写SingleBlog.vue代码,实现博客详情页

<template>
    <div id="single-blog">
        <h1>{{ blog.title }}</h1>
        <article>{{ blog.body }}</article>
    </div>
</template>

<script>
export default({
    name:"single-blog",
    data(){
        return {
            // 获取URL路径上的id值
            id:this.$route.params.id,
            blog:{}
        }
    },
    created(){
        // 请求本地JSON数据
        this.$http.get('https://jsonplaceholder.typicode.com/posts/' + this.id)
        .then(function(data){
            this.blog = data.body;
        })
    }
})
</script>

<style scoped>
#single-blog{
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    background: #eee;
    border: 1px dotted #aaa;
}
</style>

修改ShowBlogs.vue,增加点击跳转

<template>
  <div v-theme:column="'wide'" id="show-blogs">
    <h1>博客总览</h1>
    <input type="text" v-model="search" placeholder="搜索" />
    <div class="single-blog" v-for="blog in filteredBlogs" :key="blog.id">
      <!-- 使用router-link实现路由跳转 -->
      <router-link v-bind:to="'/blog/' + blog.id">
        <h2 v-rainbow>{{ blog.title | to-uppercase }}</h2>
        <article>{{ blog.body | snippet }}</article>
      </router-link>
    </div>
  </div>
</template>

运行效果

在这里插入图片描述

数据地址替换

因为https://jsonplaceholder.typicode.com/posts提供的数据是死的,并不能随意修改,所以改用https://vuedemo-b1233.firebaseio.com【别人搭建的firebase网站数据,可能会被关闭/移除】

使用axios

修改main.js,加入axios配置,替代vue-resource请求数据

import Vue from 'vue'
// import VueResource from 'vue-resource'
import App from './App.vue'
import store from './store'
import VueRouter from 'vue-router'
import Routes from './routes/routes'
import axios from 'axios'

// 全局配置
axios.defaults.baseURL = 'https://vuedemo-b1233.firebaseio.com'

Vue.config.productionTip = false

// Vue.use(VueResource)
Vue.use(VueRouter)

// 创建路由
const router = new VueRouter({
  routes:Routes,
  // 去除路径上的#号
  mode:"history"
})

new Vue({
  store,
  render: h => h(App),
  router:router
}).$mount('#app')

修改所有博客主页,使用axios替代$http

修改ShowBlog.vue

<template>
  <div v-theme:column="'wide'" id="show-blogs">
    <h1>博客总览</h1>
    <input type="text" v-model="search" placeholder="搜索" />
    <div class="single-blog" v-for="blog in filteredBlogs" :key="blog.id">
      <router-link v-bind:to="'/blog/' + blog.id">
        <h2 v-rainbow>{{ blog.title | to-uppercase }}</h2>
        <article>{{ blog.content | snippet }}</article>
      </router-link>
    </div>
  </div>
</template>

<script>
import axios from 'axios'
export default {
  name: 'show-blogs',
  data() {
    return {
      blogs: [],
      search: ""
    }
  },
  created() {
    axios.get('/posts.json')
      .then(function(data){
        return data.data;
      }).then((data) => {
        var blogsArray = [];
        for(let key in data){
          data[key].id = key;
          // 如果content为空,则将body的值赋予给content
          // 这么做的原因:因为数据有很多人修改,出现了很多错误数据
          if(!data[key].content){
            data[key].content = data[key].body;
          }
          blogsArray.push(data[key]);
        }
        // 截取前十条数据,赋值给blogs中
        this.blogs = blogsArray.slice(0, 10);
      })
  },
  computed: {
    filteredBlogs: function () {
      return this.blogs.filter((blog) => {
        return blog.title.match(this.search) || blog.content.match(this.search);
      })
    }
  },
  filters: {
    toUppercase(value) {
      return value.toUpperCase();
    },
    snippet(value) {
      return value.slice(0, 100) + "...";
    }
  },
  directives: {
    "rainbow": {
      bind(el, binding, value) {
        el.style.color = "#" + Math.random().toString(16).slice(2, 8);
      }
    },
    "theme": {
      bind(el, binding, value) {
        if (binding.value == 'wide') {
          el.style.maxWidth = "1260px";
        } else if (binding.value == 'narrow') {
          el.style.maxWidth = "560px";
        }
        if (binding.arg == 'column') {
          el.style.background = "#6677cc";
          el.style.padding = '20px';
        }
      }
    }
  }

}
</script>

修改SingleBlog.vue

<template>
    <div id="single-blog">
        <h1>{{ blog.title }}</h1>
        <article>{{ blog.content }}</article>
    </div>
</template>

<script>
import axios from 'axios'
export default({
    name:"single-blog",
    data(){
        return {
            id:this.$route.params.id,
            blog:{}
        }
    },
    created(){
        // 请求本地JSON数据
        axios.get('/posts/' + this.id + '.json')
        .then((data) => {
            // 如果content为空,则将body的值赋予给content
            if(!data.data.content){
                data.data.content = data.data.body;
            }
            this.blog =data.data;
        })
    }
})
</script>

修改AddBlog.vue

<template>
    <div id="add-blog">
        <h2>添加博客</h2>
        <form v-if="!submited">
            <label>博客标题</label>
            <input type="text" v-model="blog.title" required />
            <label>博客内容</label>
            <textarea v-model="blog.content"></textarea>

            <div id="checkboxes">
                <label>Vue.js</label>
                <input type="checkbox" value="Vue.js" v-model="blog.categories">
                <label>Node.js</label>
                <input type="checkbox" value="Node.js" v-model="blog.categories">
                <label>React.js</label>
                <input type="checkbox" value="React.js" v-model="blog.categories">
                <label>Angular4</label>
                <input type="checkbox" value="Angular4" v-model="blog.categories">
            </div>

            <label>作者:</label>
            <select v-model="blog.author">
                <option v-for="author in authors" :key="author">{{ author }}</option>
            </select>
            <button v-on:click.prevent="post">添加博客</button>
        </form>

        <div v-if="submited">
            <h3>添加成功</h3>
        </div>
        <hr>
        <div id="preview">
            <h3>博客总览</h3>
            <p>博客标题:{{ blog.title }}</p>
            <p>博客内容:</p>
            <p>{{ blog.content }}</p>
            <p>博客分类:</p>
            <ul>
                <li v-for="category in blog.categories" :key="category">
                    {{ category }}
                </li>
            </ul>
            <p>作者:</p>
            <p>{{ blog.author }}</p>
        </div>

    </div>
</template>

<script>
import axios from 'axios'
export default {
    // https://jsonplaceholder.typicode.com/posts
    name: 'add-blog',
    data() {
        return {
            blog: {
                title: "",
                content: "",
                categories: [],
                author: ""
            },
            authors: ["cy", "fy", "cyfy"],
            submited: false
        }
    },
    methods: {
        post: function () {
            axios.post("/posts.json", 
            this.blog)
            .then( (data) => {
                this.submited = true;
                console.log(data);
            });
        }
    }
}
</script>

运行效果

在这里插入图片描述

删除博客

修改SingleBlog.vue,增加删除逻辑

<template>
    <div id="single-blog">
        <h1>{{ blog.title }}</h1>
        <article>{{ blog.content }}</article>
        <p>作者:{{ blog.author }}</p>
        <p>分类:</p>
        <ul>
            <li v-for="category in blog.categories" :key="category">{{ category }}</li>
        </ul>
        <button @click="deleteSingleBlog()">删除</button>
    </div>
</template>

<script>
import axios from 'axios'
export default({
    name:"single-blog",
    data(){
        return {
            id:this.$route.params.id,
            blog:{}
        }
    },
    created(){
        // 请求本地JSON数据
        axios.get('/posts/'
         + this.id + '.json')
        .then((data) => {
            // 如果content为空,则将body的值赋予给content
            if(!data.data.content){
                data.data.content = data.data.body;
            }
            if(!data.data.categories){
                data.data.categories = [];
            }
            this.blog =data.data;
        })
    },
    methods:{
        deleteSingleBlog(){
            axios.delete('/posts/'
                + this.id + '.json').then(response =>{
                    console.log("删除成功");
                    this.$router.push({path:'/'})
                })
        }
    }
})
</script>

运行效果:
在这里插入图片描述

博客编辑页

修改SingleBlog.vue,增加编辑页跳转

<template>
    <div id="single-blog">
        <h1>{{ blog.title }}</h1>
        <article>{{ blog.content }}</article>
        <p>作者:{{ blog.author }}</p>
        <p>分类:</p>
        <ul>
            <li v-for="category in blog.categories" :key="category">{{ category }}</li>
        </ul>
        <button @click="deleteSingleBlog()">删除</button>
        <router-link :to="'/edit/' + id">编辑</router-link> 
    </div>
</template>

修改router.js,增加编辑页跳转

import AddBlog from './../components/AddBlog';
import ShowBlogs from './../components/ShowBlogs';
import SingleBlog from './../components/SingleBlog';
import EditBlog from './../components/EditBlog';
export default[
    {
        path:"/",
        component:ShowBlogs
    },
    {
        path:"/add",
        component:AddBlog
    },
    {
        path:"/blog/:id",component:SingleBlog
    },
    {
        path:"/edit/:id",component:EditBlog
    }
]

编写EditBlog.vue,实现博客编辑页

<template>
    <div id="edit-blog">
        <h2>编辑博客</h2>
        <form v-if="!submited">
            <label>博客标题</label>
            <input type="text" v-model="blog.title" required />
            <label>博客内容</label>
            <textarea v-model="blog.content"></textarea>

            <div id="checkboxes">
                <label>Vue.js</label>
                <input type="checkbox" value="Vue.js" v-model="blog.categories">
                <label>Node.js</label>
                <input type="checkbox" value="Node.js" v-model="blog.categories">
                <label>React.js</label>
                <input type="checkbox" value="React.js" v-model="blog.categories">
                <label>Angular4</label>
                <input type="checkbox" value="Angular4" v-model="blog.categories">
            </div>

            <label>作者:</label>
            <select v-model="blog.author">
                <option v-for="author in authors" :key="author">{{ author }}</option>
            </select>
            <button v-on:click.prevent="edit">编辑博客</button>
        </form>

        <div v-if="submited">
            <h3>编辑成功</h3>
        </div>
        <hr>
        <div id="preview">
            <h3>博客总览</h3>
            <p>博客标题:{{ blog.title }}</p>
            <p>博客内容:</p>
            <p>{{ blog.content }}</p>
            <p>博客分类:</p>
            <ul>
                <li v-for="category in blog.categories" :key="category">
                    {{ category }}
                </li>
            </ul>
            <p>作者:</p>
            <p>{{ blog.author }}</p>
        </div>

    </div>
</template>

<script>
import axios from 'axios'
export default {
    name: 'edit-blog',
    data() {
        return {
            id:this.$route.params.id,
            blog: {
                title: "",
                content: "",
                categories: [],
                author: ""
            },
            authors: ["cy", "fy", "cyfy"],
            submited: false
        }
    },
    methods: {
        fetchDate(){
            axios.get('/posts/' + this.id + '.json')
            .then(data =>{
                // 如果categories不存在,就给它赋值为空
                if(!data.data.categories){
                    data.data.categories = [];
                }
                this.blog = data.data;
            })
        },
        edit: function () {
            axios.put('/posts/' + this.id + '.json',
                this.blog)
                .then((data) => {
                    this.submited = true;
            });
        }
    },
    created(){
        this.fetchDate();
    }
}
</script>

<style scoped>
/* 针对id=add-blog下所有元素 */
#edit-blog * {
    box-sizing: border-box;
}

#edit-blog {
    margin: 20px auto;
    max-width: 600px;
    padding: 20px;
}

label {
    display: block;
    margin: 20px 0 10px;
}

input[type="text"],
textarea,
select {
    display: block;
    width: 100%;
    padding: 8px;
}

textarea {
    height: 200px;
}

#checkboxes label {
    display: inline-block;
    margin-top: 0;
}

#checkboxes input {
    display: inline-block;
    margin-right: 10px;
}

button {
    display: block;
    margin: 20px 0;
    background: cyan;
    color: fff;
    border: 0;
    padding: 14px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
}

#preview {
    /* 内边距 */
    padding: 10px 20px;
    /* 边框 */
    border: 1px dotted #ccc;
    /* 外边距 */
    margin: 30px 0;
}

h3 {
    margin-top: 10px;
}
</style>

运行效果
在这里插入图片描述发布成功
在这里插入图片描述

整体项目结构

在这里插入图片描述


http://www.kler.cn/a/385975.html

相关文章:

  • 千益畅行,共享旅游卡市场乱象解析与未来展望
  • Fish Agent V0.13B:Fish Audio的语音处理新突破,AI语音助手的未来已来!
  • Vue监视属性变化watch
  • C++清除所有输出【DEV-C++】所有编辑器通用 | 算法基础NO.1
  • 关系型数据库和非关系型数据库详解
  • Pytorch如何将嵌套的dict类型数据加载到GPU
  • FFmpeg 4.3 音视频-多路H265监控录放C++开发十二:在屏幕上显示多路视频播放,可以有不同的分辨率,格式和帧率。
  • 高活跃社区 Doge 与零知识证明的强强联手,QED 重塑可扩展性
  • Programming language theory 编程语言理论-05-curring 柯里化
  • UniTask/Unity的PlayerLoopTiming触发顺序
  • c语言--数组
  • Linux命令学习,diff 命令
  • <数据集>草莓叶片病害识别数据集<目标检测>
  • Kafka经典面试题
  • 品牌与 ASO – 品牌搜索对 ASO 的影响
  • FFmpeg 4.3 音视频-多路H265监控录放C++开发十三:将AVFrame转换成AVPacket。视频编码,AVPacket 重要函数,结构体成员学习
  • AI周报(11.3-11.9)
  • ElasticSearch 添加IK分词器
  • 江协科技STM32学习- P38 软件SPI读写W25Q64
  • 4-1-1.C# 数据容器 - List(List 的定义、List 元素的基本操作、List 元素的遍历、List 的常用方法)
  • 智能出行助手:SpringBoot共享汽车管理平台
  • Coppelia Sim (v-REP)仿真 机器人3D相机手眼标定与实时视觉追踪 (三)
  • GBase 8a MPP Cluster V9安装部署
  • TikTok Spark Ads火花广告是什么?如何设置?
  • 图像算法之 OCR 识别算法:原理与应用场景
  • Unity Windows 2023 Release-Notes