### **获取完整API、源码、技术支持、精选面试题**
> ### **请购买 $ [大前端精选 - 面试题](https://www.kancloud.cn/small-four/asdasdasdasd/content/HTML.md)**
### 富文本上传图片
~~~[api]
get:/manage/product/richtext_img_upload.do
<<<
request
<form name="form2" action="/manage/product/upload.do" method="post" enctype="multipart/form-data">
<input type="file" name="upload_file">
<input type="submit" value="upload"/>
</form>
<<<
success
{
"file_path": "http://img.happymmall.com/5fb239f2-0007-40c1-b8e6-0dc11b22779c.jpg",
"msg": "上传成功",
"success": true
}
<<<
fail
{
"success": false,
"msg": "error message",
"file_path": "[real file path]"
}
<<<
说明
可以借助于第三方插件
~~~