2017-05-09 5 views
0

메신저 새로운 몇 가지 이미지를 반환하고 나는 제이슨 같은 모양 파일로 당신의 이미지의 prometers을 retun해야 부하 이미지 froala의 선택에 froala 편집기
를 사용하려는 방법 :
.NET mvc5에서 JSON으로

[ 
    { 
    url: 'http://exmaple.com/images/photo1.jpg', 
    thumb: "http://exmaple.com/thumbs/photo1.jpg", 
    tag: 'flower' 
    }, 
    { 
    url: 'http://exmaple.com/images/photo2.jpg', 
    thumb: "http://exmaple.com/thumbs/photo2.jpg", 
    tag: 'sport' 
    } 
] 

나는 IMG 폴더에서 이미지를 얻는 방법을 알고 JSON로를 반환 해달라고은
는이 metod
미안 내 언어를 변경하는 방법에 대한 froala doc 좋은하지 않습니다

답변

0

https://www.froala.com/wysiwyg-editor/docs/sdks/dotnet/image-manager에 대한 옵션이 내장 된 .NET SDK for Froala Editor을 사용하는 것이 좋습니다. 다음과 같은 형식이어야합니다.

using System; 
using System.Web.Mvc; 

namespace demo.Controllers 
{ 
    public class FroalaApiController : Controller 
    { 
     public ActionResult LoadImages() 
     { 
      string uploadPath = "/Public/"; 

      try 
      { 
       return Json(FroalaEditor.Image.List(System.Web.HttpContext.Current, uploadPath)); 
      } 
      catch (Exception e) 
      { 
       return Json(e); 
      } 
     } 

     public ActionResult DeleteImage() 
     { 
      try 
      { 
       FroalaEditor.Image.Delete("/Public/" + HttpContext.Request.Form["src"]); 
      } 
      catch (Exception e) 
      { 
       return Json(e); 
      } 


      return Json(true); 
     } 
    } 
}