vue 에서 ueditor 부 텍스트 편집기 사용 하기
1.UEditor 홈 페이지 의 최신 jsp 버 전의 패 키 지 를 다운로드 하고 압축 해제 가 완료 되면 utf8-jsp 폴 더 를 얻 을 수 있 습 니 다.그 안에 포 함 된 내용 은 다음 과 같 습 니 다.
2.이 폴 더 를 ueditor 로 이름 을 바 꾸 고 프로젝트 의 static 폴 더 에 옮 겨 서 ueditor.config.js 폴 더 의 내용 을 수정 합 니 다.다음 그림:
3.하위 구성 요소 작성
<template>
<div :id="id" type="text/plain"></div>
</template>
<script>
import '../../../static/ueditor/ueditor.config.js'
import '../../../static/ueditor/ueditor.all.min.js'
import '../../../static/ueditor/lang/zh-cn/zh-cn.js'
import '../../../static/ueditor/ueditor.parse.min.js'
export default {
name: 'UE',
data() {
return {
editor: null
}
},
props: {
defaultMsg: {
type: String,
default: ' '
},
config: {
type: Object
},
id: {
type: String,
default: `ue${Math.random(0, 100)}`
}
},
mounted() {
this.$nextTick(() => {
this.editor = UE.getEditor(this.id, this.config); // UE
this.editor.addListener("ready", () => {
this.editor.execCommand('insertHtml', this.defaultMsg);
this.editor.focus() // UE , 。
})
})
},
methods: {
getUEContent() { //
return this.editor.getContent()
},
clearContent() { //
return this.editor.execCommand('cleardoc');
},
},
beforeDestroy() {
// , UEditor
if (this.editor !== null && this.editor.destroy) {
this.editor.destroy();
}
}
}
</script>
<style scoped></style>
4.부모 구성 요소 에서 사용
<UE :config="configEditor" :id="ue1" ref="ue" :defaultMsg="val"></UE>
5.다 한 후에 사진 을 올 리 면 백 엔 드 설정 항목 http 오 류 를 알 리 고 파일 업로드 시 업로드 오 류 를 알 립 니 다.여기 서 설명 하지 마 세 요.ueditor 는 전단 에 설정 한 후 백 엔 드 부분 과 협조 하여 진행 해 야 합 니 다.그리고 ueditor.config.js 에 있 는 server Url 의 접 두 사 를 백 엔 드 접근 요청 경로 주 소 를 변경 합 니 다.
serverUrl: " "
총결산위 에서 말 한 것 은 소 편 이 소개 한 vue 에서 ueditor 부 텍스트 편집 기 를 사용 하 는 것 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 면 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fastapi websocket 및 vue 3(Composition API)1부: FastAPI virtualenv 만들기(선택 사항) FastAPI 및 필요한 모든 것을 다음과 같이 설치하십시오. 생성main.py 파일 및 실행 - 브라우저에서 이 링크 열기http://127.0.0.1:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.