Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to integrate codeMirror in vue.js

2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces how to integrate codeMirror in vue.js, the content is very detailed, interested friends can use for reference, I hope it can be helpful to you.

1. Add new Vue ({el:'# app', data: {editor: null}, mounted () {this.init ()}) to the frontend code Methods: {init () {this.editor = CodeMirror.fromTextArea ("editor_demo"), {lineNumbers: true, indentWithTabs: true, mode: "python", matchBrackets: true}) This.editor.setSize ('auto','600px') }, handleAdd () {axios.post (site_url + "create_blog/", {"content": this.editor.getValue ()}) .then (res = > {if (res.data.result) {this.$message.success ('content added successfully') } else {this.$message.error ('failed to add content');}}, 'json');}}) 2. The backend code def create_blog (request): data = json.loads (request.body) content = data.get ("content") print (content). Return JsonResponse ({"result": True})

Display effect

On how to integrate codeMirror in vue.js to share here, I hope the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 264

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report