How to build a file upload form using DropzoneJS and Go

Written by kataras | Published 2017/10/04
Tech Story Tags: javascript | go | golang | tutorial | programming

TLDRvia the TL;DR App

This is the part 1 of 2 in DropzoneJS + Go series.

DropzoneJS + Go: How to build a file upload form

DropzoneJS is an open source library that provides drag’n’drop file uploads with image previews. It is a great JavaScript library which actually does not even rely on JQuery.  In this tutorial, we are building a multiple file upload form using DropzoneJS, and the backend will be handled by Go and Iris.

Table Of Content

  • Preparation
  • Work with DropzoneJS
  • Work with Go

Preparation

  1. Download Go(Golang), setup your computer as shown there and continue to 2.
  2. Install Iris; open a terminal and execute go get -u github.com/kataras/iris
  3. Download DropzoneJS from this URL. DropzoneJS does not rely on JQuery, you will not have to worry that, upgrading JQuery version breaks your application.
  4. Download dropzone.css from this URL, if you want some already made css.
  5. Create a folder “./public/uploads”, this is for storing uploaded files.
  6. Create a file “./views/upload.html”, this is for the front form page.
  7. Create a file “./main.go”, this is for handling backend file upload process.

Your folder&file structure should look like this after the preparation:

Work with DropzoneJS

Open file “./views/upload.html” and let us create a DropzoneJs form.

Copy the content below to “./views/upload.html” and we will go through each line of code individually.

  1. Include the CSS Stylesheet.
  2. Include DropzoneJS JavaScript library.
  3. Create an upload form with css class “dropzone” and “action” is the route path “/upload”. Note that we did create an input filed for fallback mode. This is all handled by DropzoneJS library itself. All we need to do is assign css class “dropzone” to the form. By default, DropzoneJS will find all forms with class “dropzone” and automatically attach itself to it.

Work with Go

Now you have come to Last part of the tutorial. In this section, we will store files sent from DropzoneJS to the “./public/uploads” folder.

Open “main.go” and copy the code below:

  1. Create a new Iris app.
  2. Register and load templates from the “views” folder.
  3. Make the “/public” route path to statically serve the ./public/… folder’s contents
  4. Create a route to serve the upload form.
  5. Create a route to handle the POST form data from the DropzoneJS’ form
  6. Declare a variable for destination folder.
  7. If file is sent to the page, store the file object to a temporary “file” variable.
  8. Move uploaded file to destination based on the uploadsDir+uploaded file’s name.

Running the server

Open the terminal at the current project’s directory and execute:

$ go run main.goNow listening on: http://localhost:8080Application started. Press CTRL+C to shut down.

Now go to browser, and navigate to http://localhost:8080, you should be able to see a page as below:

Move forward to the Part 2 by clicking here.

I want to personally thanks the dev.to team for sharing my new article at their twitter account!

I like the visual effects when I click the clap button more than once, do you? It’s simple: just click the clap button. If you feel strongly, click it more (or just hold it down).


Published by HackerNoon on 2017/10/04