Files
blog-press/docs/Web-Backend/index.md
2025-12-18 00:03:36 +08:00

23 lines
567 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
layout: doc
title: Web后端
description: Web后端开发技术文档包含数据库、框架、中间件等
---
# Web 后端开发
后端开发技术栈的学习笔记和总结。
<script setup>
import { routers } from '../.vitepress/theme/router'
import { withBase } from 'vitepress'
</script>
<div v-for="category in routers[1].items" :key="category.text">
<h3>{{ category.text }}</h3>
<ul>
<li v-for="item in category.items" :key="item.text">
<a :href="withBase(item.link)">{{ item.text }}</a>
</li>
</ul>
</div>