溫馨提示×

溫馨提示×

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

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

nodejs+mongodb+vue前后臺配置ueditor的示例代碼

發(fā)布時間:2020-08-29 15:52:10 來源:腳本之家 閱讀:154 作者:cheer4chai 欄目:web開發(fā)

筆者在做一個個人博客項目的時候需要一個富文本框輸入組件與后臺進(jìn)行交互,但是官方配置里面沒有關(guān)于nodejs的,于是自己查閱資料研究了一下,最后終于應(yīng)用到了系統(tǒng)中。

一、后臺配置

首先是找到了這個項目:https://github.com/netpi/ueditor,可以通過他開源的代碼將ueditor應(yīng)用的node上面,大概方法如下:

1.先安裝依賴:

npm install ueditor --save

2. 配置Node設(shè)置

//引入接口文件
const api = require('./api');
//引入文件模塊
const fs = require('fs');
//引入處理路徑模塊
const path = require('path');
//引入處理post數(shù)據(jù)模塊
var bodyParser = require('body-parser');

//引入express
const express = require('express');
const app = express();
//引入ueditor
const ueditor = require("ueditor")

// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))

//更改限定大小
app.use(bodyParser.json({ limit: '50mb' }));
app.use(bodyParser.urlencoded({ limit: '50mb', extended: true }));
// parse application/json
app.use(bodyParser.json())
app.use(api)

app.use("/ueditor/ue", ueditor(path.join(__dirname, 'public'), function(req, res, next) {
  //客戶端上傳文件設(shè)置
  var imgDir = '/img/ueditor/'
  var ActionType = req.query.action;
  if (ActionType === 'uploadimage' || ActionType === 'uploadfile' || ActionType === 'uploadvideo') {
    var file_url = imgDir; //默認(rèn)圖片上傳地址
    /*其他上傳格式的地址*/
    if (ActionType === 'uploadfile') {
      file_url = '/file/ueditor/'; //附件
    }
    if (ActionType === 'uploadvideo') {
      file_url = '/video/ueditor/'; //視頻
    }
    res.ue_up(file_url); //你只要輸入要保存的地址 。保存操作交給ueditor來做
    res.setHeader('Content-Type', 'text/html');
  }
  // 客戶端發(fā)起圖片列表請求
  else if (req.query.action === 'listimage') {
    var dir_url = imgDir;
    res.ue_list(dir_url); // 客戶端會列出 dir_url 目錄下的所有圖片
  }
  // 客戶端發(fā)起其它請求
  else {
    // console.log('config.json')
    res.setHeader('Content-Type', 'application/json');
    res.redirect('../nodejs/config.json');
  }
}));

//處理靜態(tài)文件 todo
// 訪問靜態(tài)資源文件 這里是訪問所有dist目錄下的靜態(tài)資源文件
app.use(express.static(path.resolve(__dirname, 'public/')))
app.use('/ueditor', function(req, res) {
  res.render('views/');
});

//監(jiān)聽8888端口
app.listen(8888);
console.log('sucess listen......')

這里需要注意的是因為已經(jīng)require了ueditor,所以該插件已經(jīng)安裝到了node_module內(nèi),所以不需要再拷貝額外的文件了,只需要需要在這個目錄下面新建public文件夾存放返回給后臺的數(shù)據(jù),另外,還需要引入配置文件config.json

二、前臺配置

vue的前臺配置需要下載ueditor的文件放在目錄中,我將其放在了static文件夾中,在vue入口文件中引入ueditor的文件:

import '../static/UE/ueditor.config.js'
import '../static/UE/ueditor.all.min.js'
import '../static/UE/lang/zh-cn/zh-cn.js'
import '../static/UE/ueditor.parse.min.js'

值得一提的是需要將ueditor.config.js文件中的目錄配置為放置該插件的目錄:

window.UEDITOR_HOME_URL = "/static/UE/"

nodejs+mongodb+vue前后臺配置ueditor的示例代碼

然后在組件中配置好就可以了

我的UE.vue組件:

<template>
 <script :id=id type="text/plain"></script>
</template>

<script>
 export default {
  name: 'UE',
  data () {
   return {
    editor: null
   }
  },
  props: {
   defaultMsg: {
    type: String
   },
   config: {
    type: Object
   },
   id: {
    type: String
   },
  },
  mounted() {
   const _this = this;
   this.editor = UE.getEditor(this.id, this.config); // 初始化UE
   this.editor.addListener("ready", function () {
    _this.editor.setContent(_this.defaultMsg); // 確保UE加載完成后,放入內(nèi)容。
   });
  },
  methods: {
   getUEContent() { // 獲取內(nèi)容方法
    return this.editor.getContent()
   }
  },
  destroyed() {
   this.editor.destroy();
  }
 }
</script>

引入方式:

<UE :defaultMsg=defaultMsg :config=config :id=ue1 ref="ue"></UE>

data() {
  return {
   defaultMsg: "",
   image: "",
   config: {
    initialFrameWidth: null,
    initialFrameHeight: 350
   },
   ue1: "ue1"
  };
 },

就可以成功配置好ueditor的基本功能了

三、前后臺請求代理

在vue dev環(huán)境下可以設(shè)置webpack的proxyTable將后端請求代理轉(zhuǎn)發(fā),就可以輕松調(diào)試文件上傳功能了,同理,vue build之后的文件則需要用Node將靜態(tài)文件代理到和后端同一個端口上才可以請求后臺端口

篇幅有限,文章可能講述的不太清晰,具體的可以看我這個項目的代碼:https://github.com/cheer4chai/myBlog

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

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

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

AI