简体中文 | [English](./README_zh-EN.md)
# 前言
以nuxt2作为vue的服务端渲染,适合刚接触或者准备上vue ssr的同学参考和学习,
此项目涉及注册、登录、商品展示、地址管理等等,从前端到后端到最后到服务端部署,让你体验到全栈开发到乐趣。
注:项目仿照饿了么H5版本,参考2018最新UI,正常下单请选择饿了么官方客户端。
如遇网络不佳,请移步[国内镜像加速节点](https://gitee.com/easytuan/nuxt-elm)
# 效果演示
[查看demo请戳这里](https://elm.caibowen.net/)(请用chrome手机模式预览)
### 移动端扫描下方二维码
<img src="./screenshots/qr-code.png" width="250" height="250"/>
# API接口文档
[接口文档地址](https://easytuan.gitee.io/node-elm-api/doc)(基于apidoc)
# 技术栈
nuxt2 + vue + vuex + vue-router + mint-ui
## 项目运行
```
git clone git@github.com:EasyTuan/nuxt-elm.git
# 国内镜像加速节点:git@gitee.com:easytuan/node-elm-api.git
cd nuxt-elm
npm install
npm run dev
# 模版快速生成
npm run tep `文件名`
# pm2部署
npm run start
```
## 补充
此项目有配套的后台系统,如果想体验前后台同时开发,可以下载对应的后台系统:[后台项目传送地址](https://github.com/EasyTuan/node-elm-api)。
如果只做前端开发,请忽略这句话。
## 休闲一刻
<img src="screenshots/gh_a896d27a50a3_430.jpg" width="250"/> <img src="screenshots/gh_44a51ea2dd08_430.jpg" width="250"/>
# 目标功能
- [x] 商家列表 -- 完成
- [x] 购物车功能 -- 完成
- [x] 餐馆食品列表页 -- 完成
- [x] 店铺评价页面 -- 完成
- [x] 商家详情页 -- 完成
- [x] 登录、注册 -- 完成
- [x] 修改密码 -- 完成
- [x] 个人中心 -- 完成
- [x] 红包 -- 完成
- [x] 收货地址 -- 完成
# 业务介绍
目录结构
├── assets // 静态资源
│ ├── images // 图片资源
│ ├── services // api请求
│ ├── styles // 样式文件
│ └── utils // 常用工具类
├── components // 组件
├── config
│ └── index.js // 配置文件
├── layouts // 布局
├── middleware // 中间件
├── pages // 页面
├── plugins // 插件
├── static // 静态资源
└── store //vuex状态树
## 部分截图展示
### 首页展示
<img src="screenshots/1.png" width="375px" height="667px" /> <img src="screenshots/1.gif" width="375px" height="667px" />
### 个人资料
<img src="screenshots/2.png" width="375px" height="667px" /> <img src="screenshots/2.gif" width="375px" height="667px" />
### 我的
<img src="screenshots/3.png" width="375px" height="667px" /> <img src="screenshots/3.gif" width="375px" height="667px" />
### 订餐
<img src="screenshots/4.png" width="375px" height="667px" /> <img src="screenshots/4.gif" width="375px" height="667px" />
### 商家评价
<img src="screenshots/5.png" width="375px" height="667px" /> <img src="screenshots/5.gif" width="375px" height="667px" />
# 说明
> 如果对您有帮助,您可以点右上角 "Star" 支持一下 谢谢! ^_^
> 或者您可以 "follow" 一下,我会不断开源更多的有趣的项目
> 如有问题请直接在 Issues 中提,或者您发现问题并有非常好的解决方案,欢迎 PR 👍
# 开发日常记录
### nuxt模版搭建
这里关于项目初始化,我是直接使用的 `Nuxt` 官网提供的 create-nuxt-app
```shell
# 确保安装了npx(npx在NPM版本5.2.0默认安装了):
npx create-nuxt-app <项目名>
它会让你进行一些选择:
1.在集成的服务器端框架之间进行选择:
None (Nuxt默认服务器)
Express
Koa
Hapi
Feathers
Micro
Adonis (WIP)
2.选择您喜欢的UI框架:
None (无)
Bootstrap
Vuetify
Bulma
Tailwind
Element UI
Buefy
3.选择你想要的Nuxt模式 (Universal or SPA)
4.添加 axios module 以轻松地将HTTP请求发送到您的应用程序中。
5.添加 EsLint 以在保存时代码规范和错误检查您的代码。
6.添加 Prettier 以在保存时格式化/美化您的代码。
# 启动本地服务
npm run dev
```
访问 http://localhost:3000 ,现在我们来看下初始化好的项目目录
注意:nuxt默认会读取pages里面的vue文件,自动生成路由,如需要自定义路由,可在nuxt.config.js中配置对应参数。
### request请求封装
数据和展示层的剥离是有必要的,这也是为什么前端都提倡MV*的设计模式,而对request请求封装是我们第一步要完成的。这里我选了axios作为HTTP请求客户端,axios兼容浏览器端和node端,同时提供了请求拦截、响应拦截等让我们开发更加愉快的功能。
在 `config/index.js` 中写入:
```
module.exports = {
IS_RELEASE: true, // true线上,false测试
BASE_URL: `http://localhost:3000/api`, // 测试
// BASE_URL: `https://elm.caibowen.net/api`, // 生产
// IMG_URL: 'http://localhost:9000/', // 测试
IMG_URL: 'https://easytuan.gitee.io/node-elm-api/public/', // 生产(使用码云Gitee Pages 服务)
HEADERS: {
'Content-Type': 'application/json;charset=UTF-8'
},
TIMEOUT: 12000, // api超时时间
};
```
在 `assets/utils/request.js` 中写入:
```
import axios from 'axios';
import config from '~/config';
import { Toast } from 'mint-ui';
axios.defaults.baseURL = config.BASE_URL;
axios.defaults.timeout = config.TIMEOUT;
axios.defaults.headers = config.HEADERS;
// 请求拦截器
axios.interceptors.request.use( request => {
if (!config.IS_RELEASE) {
console.log(
`${new Date().toLocaleString()}【 M=${request.url} 】P=`,
request.params || request.data,
);
}
return request;
}, error => {
return Promise.reject(error);
});
export default async (options = { method: 'GET' }) => {
let isdata = true;
if (
options.method.toUpperCase() !== 'POST'
&& options.method.toUpperCase() !== 'PUT'
&& options.method.toUpperCase() !== 'PATCH'
) {
isdata = false;
}
const res = await axios({
method: options.method,
url: options.url,
data: isdata ? options.data : null,
params: !isdata ? options.data : null,
});
if (res.status >= 200 && res.status < 300) {
if (!config.IS_RELEASE) {
console.log(
`${new Date().toLocaleString()}【接口响应:】`,
res.data,
);
}
// 浏览器环境弹出报错信息
if(typeof window !== "undefined" && res.data.code !== 0) {
Toast(res.data.msg);
}
return res.data;
}else {
if(typeof window !== "undefined" && res.data.code !== 0) {
Toast('请求错误');
}
}
};
```
最后所有api请求都写进server.js文件,方便统一管理。
### 跨域处理
使用过 `vue` 的同学,肯定知道对于项目中的跨域,`vue-cli` 对 `webpack` 中的 `proxy` 选项进行了一层封装。它暴露出来的是一个叫 `proxyTable` 的选项,是对 `webpack` 中的 `proxy` 和其三方插件 `http-proxy-middleware` 的一个整合。
不幸的 `Nuxt` 中没有 `proxyTable` 这么一个配置项来进行跨域的配置。当然幸运的是,在 `Nuxt` 中你可以直接通过配置 `http-proxy-middleware` 来处理跨域。更幸运的是 `Nuxt` 官方提供了两个包来处理 `axios` 跨域问题。
- [@nuxtjs/axios](https://www.npmjs.com/package/@nuxtjs/axios)
- [@nuxtjs/proxy](https://www.npmjs.com/package/@nuxtjs/proxy)
首先,进行安装
```shell
npm i @nuxtjs/axios @nuxtjs/proxy -D
```
然后在 `nuxt.config.js` 文件里进行配置
```
modules: [
'@nuxtjs/axios',
'@nuxtjs/proxy'
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
基于nuxt2+vue构建的全栈项目.zip (140个子文件)
.editorconfig 208B
4.gif 1.36MB
5.gif 1022KB
3.gif 981KB
1.gif 795KB
2.gif 484KB
benefit.gif 77KB
.gitattributes 84B
.gitignore 296B
200.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
index.html 3KB
favicon.ico 17KB
favicon.ico 17KB
gh_44a51ea2dd08_430.jpg 101KB
gh_a896d27a50a3_430.jpg 93KB
alipay.jpg 69KB
wechat.jpg 53KB
942b5b960cde6491f42d.js 253KB
910bf465f75eb44872dd.js 158KB
8a742fc72447bfb3fe47.js 155KB
3c856f4921cf276b63e6.js 96KB
375572cd74e141c9280b.js 26KB
f9fd03ccf0fc51dedeeb.js 24KB
08564482ad21262a60cc.js 21KB
2563ac12edb147b973ef.js 21KB
1556fba2b785fd22c0e6.js 18KB
420383f182311cfb08fa.js 16KB
2d96f02b6e76718c60f9.js 15KB
0540702f607b62192bec.js 14KB
0f7ece06e41b1d42755e.js 12KB
b55c5287f2d8d2abdbaa.js 10KB
81a11e366a76ecb7fd21.js 9KB
af39b561142935cada55.js 9KB
2e6602af1f9e1a92ceb2.js 8KB
36e21aca6d5f734fc3d0.js 5KB
f52491409b34f058c284.js 5KB
81cbb94a52a968507b35.js 5KB
validate.js 4KB
ad79a751146a41a1bf69.js 3KB
eb373e3b4d9cf2501ba1.js 3KB
c83d4103a4ad4f73ef76.js 2KB
d1fdb79693a4f11e1701.js 2KB
5d2fd86eba958ee3e0b9.js 2KB
eb7154e09515daf5b694.js 2KB
5865da82b7a58b6331ef.js 1KB
request.js 1KB
userInfo.js 1KB
user.js 1KB
nuxt.config.js 1KB
index.js 1KB
304042af442e88979d27.js 982B
index.js 972B
5455e8fbdd4d0f5a6254.js 836B
template.js 800B
shopping.js 593B
tool.js 557B
.eslintrc.js 478B
index.js 443B
common.js 206B
types.js 186B
mint-ui.js 99B
package.json 2KB
LICENSE 18KB
LICENSES 2KB
README_zh-EN.md 10KB
README.md 10KB
issue_template.md 1001B
README.md 382B
ss.md 37B
.nojekyll 0B
4.png 337KB
1.png 279KB
5.png 221KB
3.png 49KB
2.png 29KB
qr-code.png 22KB
sprite-avatar.png 14KB
3ffb5d8.png 14KB
共 140 条
- 1
- 2
资源评论
天天501
- 粉丝: 616
- 资源: 5906
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- pcie体系结构导读pci
- 2023-04-06-项目笔记 - 第三百二十一阶段 - 4.4.2.319全局变量的作用域-319 -2025.11.18
- Whisper-v1.0.0.2-x64-setup.exe
- java固定资产管理系统源码数据库 MySQL源码类型 WebForm
- mmexport1731941345010.jpg
- C#机械制造业信息管理系统源码数据库 Access源码类型 WinForm
- 【python毕业设计】智能旅游推荐系统源码(完整前后端+mysql+说明文档+LW).zip
- springboot美容院管理系统(代码+数据库+LW)
- 【python毕业设计】学生成绩管理系统源码(完整前后端+mysql+说明文档+LW).zip
- 商道融绿、润灵环球ESG评级数据(2015-2023年)dta
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功