溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

基于SpringBoot和Vue3的博客平臺(tái)的用戶注冊(cè)與登錄功能怎么實(shí)現(xiàn)

發(fā)布時(shí)間:2023-04-11 16:58:03 來(lái)源:億速云 閱讀:137 作者:iii 欄目:開(kāi)發(fā)技術(shù)

今天小編給大家分享一下基于SpringBoot和Vue3的博客平臺(tái)的用戶注冊(cè)與登錄功能怎么實(shí)現(xiàn)的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來(lái)了解一下吧。

1. 后端Spring Boot實(shí)現(xiàn)

首先,我們需要?jiǎng)?chuàng)建一個(gè)Spring Boot項(xiàng)目,并配置所需的依賴。

1.1 創(chuàng)建Spring Boot項(xiàng)目

通過(guò)Spring Initializr或者IDEA創(chuàng)建一個(gè)新的Spring Boot項(xiàng)目,選擇以下依賴:

1.2 配置application.yml

配置數(shù)據(jù)庫(kù)連接信息、MyBatis配置等。

spring:
  datasource:
    url: jdbc:mysql://localhost:3306/your_database?useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC
    username: your_username
    password: your_password
  mybatis:
    mapper-locations: classpath:mapper/*.xml
    type-aliases-package: com.example.demo.entity
server:
  port: 8080

1.3 實(shí)現(xiàn)后端API

創(chuàng)建實(shí)體類、Mapper接口、Service接口及實(shí)現(xiàn)、Controller類。

1.3.1 創(chuàng)建User實(shí)體類
public class User {
    private Integer id;
    private String username;
    private String password;
 
    // Getter and Setter methods
}
1.3.2 創(chuàng)建UserMapper接口
@Mapper
public interface UserMapper {
    User findByUsername(String username);
    void insert(User user);
}
1.3.3 創(chuàng)建UserService接口及實(shí)現(xiàn)
public interface UserService {
    User findByUsername(String username);
    void register(User user);
}
 
@Service
public class UserServiceImpl implements UserService {
    @Autowired
    private UserMapper userMapper;
 
    @Override
    public User findByUsername(String username) {
        return userMapper.findByUsername(username);
    }
 
    @Override
    public void register(User user) {
        userMapper.insert(user);
    }
}

2. 前端Vue3實(shí)現(xiàn)

接下來(lái),我們將使用Vue3實(shí)現(xiàn)前端部分。

2.1 創(chuàng)建Vue3項(xiàng)目

使用Vue CLI創(chuàng)建一個(gè)Vue3項(xiàng)目,并安裝Element Plus、Axios等插件。

vue create my-project
cd my-project
vue add element-plus
npm install axios

2.2 實(shí)現(xiàn)注冊(cè)頁(yè)面組件

創(chuàng)建一個(gè)名為Register.vue的新組件,并添加以下內(nèi)容:

<template>
  <el-form ref="form" :model="form" label-width="80px">
    <el-form-item label="用戶名" prop="username">
      <el-input v-model="form.username"></el-input>
    </el-form-item>
    <el-form-item label="密碼" prop="password">
      <el-input v-model="form.password" show-password></el-input>
    </el-form-item>
    <el-form-item>
      <el-button type="primary" @click="submitForm('form')">注冊(cè)</el-button>
    </el-form-item>
  </el-form>
</template>
 
<script>
import { reactive } from "vue";
import axios from "axios";
 
export default {
  setup() {
    const form = reactive({ username: "", password: "" });
 
    const submitForm = async () => {
      try {
        await axios.post("/api/user/register", form);
        alert("注冊(cè)成功");
      } catch (error) {
        alert("注冊(cè)失敗");
      }
    };
 
    return { form, submitForm };
  },
};
</script>

2.3 實(shí)現(xiàn)登錄頁(yè)面組件

創(chuàng)建一個(gè)名為Login.vue的新組件,并添加以下內(nèi)容:

<template>
  <el-form ref="form" :model="form" label-width="80px">
    <el-form-item label="用戶名" prop="username">
      <el-input v-model="form.username"></el-input>
    </el-form-item>
    <el-form-item label="密碼" prop="password">
      <el-input v-model="form.password" show-password></el-input>
    </el-form-item>
    <el-form-item>
      <el-button type="primary" @click="submitForm('form')">登錄</el-button>
    </el-form-item>
  </el-form>
</template>
 
<script>
import { reactive } from "vue";
import axios from "axios";
 
export default {
  setup() {
    const form = reactive({ username: "", password: "" });
 
    const submitForm = async () => {
      try {
        const response = await axios.post("/api/user/login", form);
        if (response.data.success) {
          alert("登錄成功");
          // 保存登錄狀態(tài)
        } else {
          alert("登錄失敗");
        }
      } catch (error) {
        alert("登錄失敗");
      }
    };
 
    return { form, submitForm };
  },
};
</script>

2.4 使用Vue Router配置路由

安裝Vue Router并配置路由:

vue add router

src/router/index.js中添加注冊(cè)和登錄組件的路由:

import { createRouter, createWebHashHistory } from "vue-router";
import Register from "../views/Register.vue";
import Login from "../views/Login.vue";
 
const routes = [
  {
    path: "/register",
    name: "Register",
    component: Register,
  },
  {
    path: "/login",
    name: "Login",
    component: Login,
  },
];
 
const router = createRouter({
  history: createWebHashHistory(),
  routes,
});
 
export default router;

現(xiàn)在,您可以在瀏覽器中通過(guò)訪問(wèn)/register和/login路由來(lái)查看注冊(cè)和登錄頁(yè)面。

至此,您已經(jīng)完成了基于Spring Boot和Vue3的用戶注冊(cè)與登錄功能的實(shí)現(xiàn)。這個(gè)教

程僅作為一個(gè)簡(jiǎn)單示例,實(shí)際項(xiàng)目中可能還需要加入表單驗(yàn)證、錯(cuò)誤處理、用戶權(quán)限管理等功能。

接下來(lái),我們將實(shí)現(xiàn)一個(gè)簡(jiǎn)單的登錄狀態(tài)管理。

2.5 實(shí)現(xiàn)登錄狀態(tài)管理

src目錄下創(chuàng)建一個(gè)名為store.js的文件,用于管理登錄狀態(tài):

import { reactive } from "vue";
 
const state = reactive({
  user: null,
});
 
const setUser = (user) => {
  state.user = user;
};
 
const clearUser = () => {
  state.user = null;
};
 
export default {
  state,
  setUser,
  clearUser,
};

在登錄頁(yè)面組件中,將用戶信息保存到store.js

// 在Login.vue中導(dǎo)入store
import store from "../store";
 
// ...
 
const submitForm = async () => {
  try {
    const response = await axios.post("/api/user/login", form);
    if (response.data.success) {
      alert("登錄成功");
      store.setUser(response.data.data);
      // 跳轉(zhuǎn)到首頁(yè)或其他頁(yè)面
    } else {
      alert("登錄失敗");
    }
  } catch (error) {
    alert("登錄失敗");
  }
};
 
// ...

現(xiàn)在,您可以在其他組件中訪問(wèn)store.state.user來(lái)獲取登錄用戶的信息。如果user為null,則表示用戶尚未登錄。

這是一個(gè)非常簡(jiǎn)單的登錄狀態(tài)管理實(shí)現(xiàn)。在實(shí)際項(xiàng)目中,您可以考慮使用更為復(fù)雜的狀態(tài)管理庫(kù),如Vuex,以更好地管理應(yīng)用程序的狀態(tài)。

以上就是“基于SpringBoot和Vue3的博客平臺(tái)的用戶注冊(cè)與登錄功能怎么實(shí)現(xiàn)”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI