溫馨提示×

溫馨提示×

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

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

VUE+node如何實現(xiàn)前后端分離

發(fā)布時間:2021-06-06 13:35:34 來源:億速云 閱讀:838 作者:小新 欄目:web開發(fā)

小編給大家分享一下VUE+node如何實現(xiàn)前后端分離,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

vue作為前端的框架,node(express)作為后端的框架。無數(shù)據(jù)庫,使用端口保存數(shù)據(jù)。 VUE:

使用vue-cli構(gòu)建vue項目(vueapp)。

VUE+node如何實現(xiàn)前后端分離

npm install -g vue-cli(安裝,安裝過的就不用了)
vue init webpack vueapp

axios:(與ajax相似)

import axios from 'axios'
var url="http://localhost:3000"            //express服務(wù)器的地址
axios.get(url+'/product')               //放數(shù)據(jù)的接口
 .then(function (response) {             //收到的數(shù)據(jù)
  console.log(response);
  console.log(response.data);            //展示數(shù)據(jù)(看看是否拿到,和數(shù)據(jù)長啥樣) 
  var nodeData=response.data;      
 })
 .catch(function (error) {
  console.log(error);![在這里插入圖片描述](https://img-blog.csdnimg.cn/20191013132943460.jpg)
 });

axios沒安裝的記得裝一下。(安裝不細(xì)說)

node(express): 啟動>>>npm start

使用express構(gòu)建服務(wù)器:
VUE+node如何實現(xiàn)前后端分離

新建個myapp放express
npm install express

在(routes文件夾中)建一個product,js接口

var express = require('express');      //使用express
var router = express.Router();        //放數(shù)據(jù)
/* GET home page. */
router.get('/', function (req, res, next) {
  var data = {
    code: 0,
    data: {
      name: 'aaa',
      pwd: '123'
    },
    isSuccess: true,
    msg: "請求成功"
  }
  res.json(data);
});
module.exports = router;

app.js(建立接口存放數(shù)據(jù))

var productRouter = require('./routes/product');
app.use('/product', productRouter);

最后服務(wù)器數(shù)據(jù)有了!?。。UE前端接收數(shù)據(jù)的鏈接也有了?。。〉€是沒辦法鏈接?。。?!這就是跨域的問題?。?!

跨域:

1.端口不同 http://localhost:3000和http://localhost:8080

2.網(wǎng)址不同 www.baidu.com和www.aiqiyi.com

3.ip和網(wǎng)址不同 http://localhost:3000和http://127.0.0.1

反正除非同個網(wǎng)址里面,只有目錄不同,才不用跨域。

開始解決?。?/p>

express>>>app.js

//跨域問題解決方面
const cors = require('cors'); 
app.use(cors({ 
  origin:['http://localhost:8080'],
  methods:['GET','POST'],
}));
//跨域問題解決方面
app.all('*',function (req, res, next) {
 res.header('Access-Control-Allow-Origin', 'http://localhost:8080');
 res.header('Access-Control-Allow-Headers', 'Content-Type');
 res.header('Access-Control-Allow-Methods', 'PUT, POST, GET, DELETE, OPTIONS');
 next(); 
});

cors需要安裝,是一個依賴。

結(jié)果:
服務(wù)器(express):3000接口數(shù)據(jù)
VUE+node如何實現(xiàn)前后端分離
VUE+node如何實現(xiàn)前后端分離

看完了這篇文章,相信你對“VUE+node如何實現(xiàn)前后端分離”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

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

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

AI