Giter Site home page Giter Site logo

ueditor-blazor's Introduction

ueditor-blazor

A wysiwyg rich text web editor based on UEditor and Blazor.

๐Ÿ’ฟ Current Version

  • Release: UEditorBlazor
  • Development: UEditorBlazor

Usage

  1. Install the package

      $ dotnet add package UEditorBlazor -v 0.1.0-*
  2. Import js resources

        <script src="_content/UEditorBlazor/neditor.config.js"></script>
        <script src="_content/UEditorBlazor/neditor.all.min.js" defer></script>
        <script src="_content/UEditorBlazor/ueditor-blazor.js"></script>
  3. That's all! Then you can use the UEditor.Editor component.

    <UEditor.Editor @ref="editor" @bind-Value="value" @bind-Html="html" Height="500px" Width="700px" />
    
    @code {
        string value = "Hello Blazor!";
        string html;
    
        Editor editor;
    }

Image Loading

If you want to implement custom image loading, follow the instructions listed below:

  1. Make sure there are some configuration in config file: neditor.config.js, neditor.service.js.

        serverUrl: "$YOUR_POST_URL", //About Line 31
        UE.Editor.prototype.getActionUrl = function(action) {
            if (action == "uploadimange") {
                return '$YOUR_POST_URL'; //About Line 10-11
            }
            ... //rest of codes
        }
  2. According to

    , json in uploadimage action response will be this:

        {
        	"state": "SUCCESS",
        	"url": "upload/demo.jpg",
    	"title": "demo.jpg",
        	"original": "demo.jpg"
    }

    After implementation like above json format response, there will be no images inserted into your editor.

    neditor.server.js line 60 in getResponseSuccess method requires there will be a code field in json:

        {
            "state": "SUCCESS",
            "url": "upload/demo.jpg",
            "title": "demo.jpg",
            "original": "demo.jpg",
            "code": 200
        }
  3. Enjoy.

ueditor-blazor's People

Contributors

charset avatar elderjames avatar

Stargazers

mschen_ avatar

Watchers

mschen_ avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.