iT邦幫忙

0

ckeditor 無法傳照片的問題

  • 分享至 

  • xImage

請教大家
參考https://www.dotblogs.com.tw/chichiBlog/2020/05/13/122030 說明, 有邦友知道controller設定是要加在那裏呢?

contorller 設定
(路徑的部分請自行修正)
        //CKEditorFuncNum,是ckeditor呼叫時自動把參數加在網址上傳(GET)過來的,
        //目的是識別最後要把圖片塞到哪個ckeditor
      
        [HttpPost]
        public ActionResult UploadImg( string CKEditorFuncNum, HttpPostedFileBase upload)
        {           
            string path = "";
            string message = "";
            if (upload != null)
            {
                string filename = Path.GetFileName(upload.FileName);
                if (upload.ContentLength > 0)
                {
                    path = Path.Combine(Server.MapPath("~/upload/img"), filename);
                    upload.SaveAs(path);

                    string imgUrl = "/upload/img" + filename;
                    message = "window.parent.CKEDITOR.tools.callFunction('" + CKEditorFuncNum + "', '"+ imgUrl + "')";
                }
            }
            else
            {
                message = "上傳失敗";
            }
            return Content("<script>" + message + "</script>");
        }
Homura iT邦高手 1 級 ‧ 2021-08-20 09:47:20 檢舉
看不懂, 不是就加到你想加的controller?
Yaowen iT邦研究生 3 級 ‧ 2021-08-20 09:54:23 檢舉
你貼的不就是controller了?
如果你還不懂Controller,可能要先去研究MVC架構等等??
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友回答

立即登入回答