1.引用樣式和js文件javascript
<link href="~/Content/scripts/plugins/simditor/css/simditor.css" rel="stylesheet" /> <script src="~/Content/scripts/plugins/simditor/js/simditor.js"></script>
2.初始化Simditorcss
var editor = null; $(function () { //能夠參考 http://www.jcodecraeer.com/a/javascript/2015/0201/2393.html editor = new Simditor({ textarea: $('#NewsContent'), placeholder: '這裏輸入公告內容...', toolbar: ['title', 'bold', 'italic', 'underline', 'strikethrough', 'color', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link', 'image', 'hr', '|', 'indent', 'outdent'], upload: { url: '/PublicInfoManage/Notice/SavePic', //文件上傳的接口地址 params: null, //鍵值對,指定文件上傳接口的額外參數,上傳的時候隨文件一塊兒提交 fileKey: 'fileDataFileName', //服務器端獲取文件數據的參數名 connectionCount: 3, leaveConfirm: '正在上傳文件' } }); })
upload設置好就會出現下圖中的選項html
實現功能以前須要修改一下引用的js文件,使用查看瀏覽器的審覈元素功能查看,發現input按鈕沒有name屬性java
3.打開Simditor.js文件搜索accept屬性,而後添加「name=「fileData」屬性,共有兩處須要添加,以下圖瀏覽器
4.編寫後臺處理圖片代碼服務器
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/// <summary>
/// 上傳圖片
/// </summary>
/// <returns></returns>
public
ActionResult SavePic()
{
HttpPostedFileBase file = Request.Files[
"fileDataFileName"
];
if
(file !=
null
)
{
string
strPath = HttpContext.Server.MapPath(
"/Content/Upload/"
);
if
(!Directory.Exists(strPath))
{
Directory.CreateDirectory(strPath);
}
string
filePath = Path.Combine(strPath, Path.GetFileName(file.FileName));
file.SaveAs(filePath);
return
Success(
"上傳成功!"
);
}
else
{
return
Success(
"上傳失敗!"
);
}
}
|