CKeditor Request FormData 偵測到潛在危險

CKeditor 會輸入一些內容時,其實他是HTML格式,當我們利用Form Data包起來傳至後端時

因為有HTML格式,.net 會偵測出潛在的風險

 

解決方案

MVC : 

  1. webconfig :    <httpRuntime requestValidationMode="2.0"/>

  2.  [ValidateInput(false)]
     public ActionResult Submit(){}


參考資料:

  1. https://shiyousan.com/post/635570614699464314