zoukankan      html  css  js  c++  java
  • ASP.NET MVC4 UEditor 的上传图片配置路径


    ASP.NET MV4下,使用UEditor1.4.3最新版本,网址就不说了,去百度官网下载即可,关于在Controler下如何配置,直接上图:

     

    然后再Views下面来个页面引用如下:

        <!-- ueditor配置文件 -->
        <script type="text/javascript" charset="utf-8" src="../../Content/ueditor/ueditor.config.js"></script>
        <!-- ueditor编辑器源码文件 -->
        <script type="text/javascript" charset="utf-8" src="../../Content/ueditor/ueditor.all.js"></script>
        <!--ueditor手动加载语言-->
        <script type="text/javascript" charset="utf-8" src="../../Content/ueditor/lang/zh-cn/zh-cn.js"></script>
        <!-- ueditor实例化产生编辑器 -->
        <script type="text/javascript">
            window.UEDITOR_HOME_URL = "../../Content/ueditor/";
            var ueditor = UE.getEditor('container', {
                toolbars: [['anchor', 'undo', 'redo', 'bold', 'indent', 'snapscreen', 'italic', 'underline', 'strikethrough', 'subscript', 'fontborder', 'superscript', 'formatmatch', 'source', 'blockquote', 'pasteplain', 'selectall', 'print', 'preview', 'horizontal', 'removeformat', 'time', 'date', 'unlink', 'insertrow', 'insertcol', 'mergeright', 'mergedown', 'deleterow', 'deletecol', 'splittorows', 'splittocols', 'splittocells', 'deletecaption', 'inserttitle', 'mergecells', 'deletetable', 'cleardoc', 'insertparagraphbeforetable', 'fontfamily', 'fontsize', 'paragraph', 'simpleupload', 'insertimage', 'edittable', 'edittd', 'link', 'emotion', 'spechars', 'searchreplace', 'map', 'help', 'justifyleft', 'justifyright', 'justifycenter', 'justifyjustify', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'fullscreen', 'directionalityltr', 'directionalityrtl', 'rowspacingtop', 'rowspacingbottom', 'pagebreak', 'insertframe', 'imagenone', 'imageleft', 'imageright', 'imagecenter', 'lineheight', 'edittip', 'customstyle', 'autotypeset', 'touppercase', 'tolowercase', 'scrawl', 'inserttable', 'charts']],//支持自定义控件显示的图标功能
                initialFrameHeight: 400,
                initialFrameWidth: 700
            });
     </script>
    container是一个div的id。

     

    在config.json中配置图片上传路径: 

  • 相关阅读:
    lpc4357第一个实验,串口(中断)
    移植UCOS-II时堆栈增长方向的疑问
    ARM Cortex-M4_寄存器介绍(-Part5)
    ARM Cortex-M4内核流水线和总线介绍 (-Part4_)
    从ARM 中的 指令对齐 到 bala bala········
    外部Nor Flash的初始化文件名为Prog_Ext_NOR.ini
    LPC4357,NOR FLAHS 仿真初始化文件Dbg_Ext_NOR.ini
    KEIL、uVision、RealView、MDK、KEIL C51之间的关系纠葛(比较区别)
    nand flash 和 nor flash
    c里面取地址和引用的 区别··········
  • 原文地址:https://www.cnblogs.com/whaozl/p/4413626.html
Copyright © 2011-2022 走看看