nodejs+mongodb+vue前后台配置ueditor的示例代码
程序员文章站
2022-04-10 22:06:52
笔者在做一个个人博客项目的时候需要一个富文本框输入组件与后台进行交互,但是官方配置里面没有关于nodejs的,于是自己查阅资料研究了一下,最后终于应用到了系统中。
一、后...
笔者在做一个个人博客项目的时候需要一个富文本框输入组件与后台进行交互,但是官方配置里面没有关于nodejs的,于是自己查阅资料研究了一下,最后终于应用到了系统中。
一、后台配置
首先是找到了这个项目:,可以通过他开源的代码将ueditor应用的node上面,大概方法如下:
1.先安装依赖:
npm install ueditor --save
2. 配置node设置
//引入接口文件 const api = require('./api'); //引入文件模块 const fs = require('fs'); //引入处理路径模块 const path = require('path'); //引入处理post数据模块 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) { //客户端上传文件设置 var imgdir = '/img/ueditor/' var actiontype = req.query.action; if (actiontype === 'uploadimage' || actiontype === 'uploadfile' || actiontype === 'uploadvideo') { var file_url = imgdir; //默认图片上传地址 /*其他上传格式的地址*/ 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'); } // 客户端发起图片列表请求 else if (req.query.action === 'listimage') { var dir_url = imgdir; res.ue_list(dir_url); // 客户端会列出 dir_url 目录下的所有图片 } // 客户端发起其它请求 else { // console.log('config.json') res.setheader('content-type', 'application/json'); res.redirect('../nodejs/config.json'); } })); //处理静态文件 todo // 访问静态资源文件 这里是访问所有dist目录下的静态资源文件 app.use(express.static(path.resolve(__dirname, 'public/'))) app.use('/ueditor', function(req, res) { res.render('views/'); }); //监听8888端口 app.listen(8888); console.log('sucess listen......')
这里需要注意的是因为已经require了ueditor,所以该插件已经安装到了node_module内,所以不需要再拷贝额外的文件了,只需要需要在这个目录下面新建public文件夹存放返回给后台的数据,另外,还需要引入配置文件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/"
然后在组件中配置好就可以了
我的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加载完成后,放入内容。 }); }, methods: { getuecontent() { // 获取内容方法 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环境下可以设置webpack的proxytable将后端请求代理转发,就可以轻松调试文件上传功能了,同理,vue build之后的文件则需要用node将静态文件代理到和后端同一个端口上才可以请求后台端口
篇幅有限,文章可能讲述的不太清晰,具体的可以看我这个项目的代码:https://github.com/cheer4chai/myblog
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。