这篇文章给大家分享的是有关怎么在一台vps上面部署vue+mongodb+express项目的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
项目: vue + express + mongodb
项目前后分离部署在一台服务器上面
- express端口:3000 
- mongodb端口:27017 
- vue端口:本地是8080 服务端是:80 
本地开发配置
本地开发基于vue cli 端口是 8080如果请求api的时候在前缀加上localhost:3000会提示跨域问题,我们可以使用下面方式来解决这个问题
在vue项目路径找到这个文件 /vue-item/config/index.js 找到这行代码:
proxyTable: {}添加如下配置
demo:
proxyTable: {
    '/v1/**':{
    target: 'http://localhost:3000/',
    pathRewrite: {
     '^/v1': '/'
    }
   }
  }v1 是我给api自动添加的前缀
这个前缀可以使用 axios 配置添加
在main.js 主入口文件添加
如下
import apiConfig from '../config/api.config'
// import axios
import Axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios, Axios)
// Axios.defaults.baseURL = apiConfig.baseUrl;
Axios.defaults.baseURL = 'v1/' 这样也ok的
api.config
判断是开发模式还是本地模式,其实不需要这么麻烦 直接
const isProdMode = Object.is(process.env.NODE_ENV, 'production')
module.exports = {
 baseUrl: isProdMode ? 'api.shudong.wang/v1/' : 'v1/'
}如果把axios 配置了自动前缀
每次访问的时候
 data(){
  return {
   articleList:Object
  }
 },
 mounted: function(){
  this.getArticleList()
 },
 methods:{
  getArticleList(){
   console.log(111111111)
     this.$http.get("/article/list") // this.$http axios使用的一种方式
     .then((response)=>{
       console.log(response.data)
       let res = response.data;
       this.articleList = res.data;
     })
     .catch((error) =>{
      console.log(error)
     })
  }
 },上面请求的例子中相当于访问: localhost:8080/v1/article/list
这样就可以解决跨域问题
其实最终访问的是 localhost:3000/article/list express的api
这个v1只是api版本的标识,如果想带着,并且api是可以v1版本方式访问的,把代理的路径重新规则去掉就可以 
操作如下:
proxyTable: {
    '/v1/**':{
    target: 'http://localhost:3000/',
    //pathRewrite: { //这个规则去掉
    // '^/v1': '/'
    //}
   },
   '/goods/*':{
    target:'http://localhost:3000'
   },
   '/users/**':{
    target:'http://localhost:3000'
   }
  }服务端部署
本地可以使用proxyTable 解决跨域问题,那么服务端怎么解决跨域问题呢?
answer:使用nginx反向代理
nginx配置: 仔细分析一下看看是否适合自己的业务场景
server
  {
    listen 80;
    #listen [::]:80;
    server_name zhenfan.shudong.wang ; # 你的域名不需要加http 
    index index.html index.htm index.php default.html default.htm default.php;
    root /home/wwwroot/zhenfan/dist;
    include none.conf;
    #error_page  404  /404.html;
    # Deny access to PHP files in specific directory
    #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }
    include enable-php.conf;
    location /v1 {
      proxy_pass http://127.0.0.1:3000/; # 当访问v1的时候默认转发到 3000端口
    }
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
      expires   30d;
    }
    location ~ .*\.(js|css)?$
    {
      expires   12h;
    }
    location ~ /.well-known {
      allow all;
    }
    location ~ /\.
    {
      deny all;
    }
    access_log off;
  }关于express链接mongodb可以直接填写端口号,不存在跨域问题,直接 127.0.0.1:27017就ok,
感谢各位的阅读!关于“怎么在一台vps上面部署vue+mongodb+express项目”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!