- Back to Docs
- Install and Configure
- Image
- Server Upload
- Server Delete
- S3 Upload
- Resize
- Validation
- Image Manager
- Simple Server
- File
- Server Upload
- Server Delete
- S3 Upload
- Validation
- References
- Image
- File
- S3
Ruby File Server Upload
How it works
- You specify the upload options when the rich text editor is initialized on client side.
- When an file is inserted, the javascript editor automatically makes an AJAX request to the server.
- Once the request hits the server, it stores the file and sends back to the client the link to the uploaded file.
Initialize the javascript editor
To get started, the rich text editor needs to have the fileUploadURL
option set as the URL where you want to have the files uploaded. Additionally, you can set other options related to the way the files are being uploaded and what data your server receives: fileUploadParam
, fileUploadParams
, fileUploadMethod
, fileMaxSize
, fileAllowedTypes
.
<script> $(function() { $('.selector').froalaEditor({ // Set the file upload URL. fileUploadURL: '/upload_file' }) }); </script>
Receive the uploaded file and store it
The server implementation is responsible for receiving the request and handling it appropriately. In Ruby, the uploaded file is available in the params
global variable. The Ruby editor SDK is designed to automatically detect the uploaded file, so you just have to specify the path where to store it.
Note: The path of the file is relative to the Rails.root
global variable.
FroalaEditorSDK::File.upload(params)
For the uploaded file to be stored correctly, the server should have the rights to write in the uploads folder. Additionally, you should check that the uploaded file is public accessible in browser so it can be displayed to your users.
Return the path to the uploaded file
If the save action is completed successfully, the SDK is generating an FileResponse
object with the absolute path to the uploaded file, so your server just have to return it back to the client side.
render :json => FroalaEditorSDK::File.upload(params)
Complete Example
<script> $(function() { $('.selector').froalaEditor({ // Set the file upload URL. fileUploadURL: '/upload_file' }) }); </script>
class UploadController < ActionController::Base ... def upload_file render :json => FroalaEditorSDK::File.upload(params) end ... end