_examples/tutorial/dropzonejs. Stay tuned for two-parts article series on https://medium.com/@kataras and https://dev.to/@kataras

tried to fix `README_NEXT.MD` to `README_NEXT.md` but suffix is not recognised by git so rename README_NEXT.MD to README_PART2.md.

I'll write two articles based on that content you can see already (because you follow the Iris project in github)


Former-commit-id: 48bb828909a9bd72939a6de3ee325d15dbb9f88b
This commit is contained in:
Gerasimos (Makis) Maropoulos 2017-10-03 05:23:18 +03:00
parent 000d1b000d
commit 2013411400
4 changed files with 5 additions and 3 deletions

View File

@ -98,6 +98,7 @@ Help this project to continue deliver awesome and unique features with the highe
* [Typescript Automation Tools](typescript/#table-of-contents)
* [Tutorial: Online Visitors](_examples/tutorial/online-visitors)
* [Tutorial: Caddy](_examples/tutorial/caddy)
* [Tutorial: DropzoneJS Uploader](_examples/tutorial/dropzonejs)
* [Middleware](middleware/)
* [Dockerize](https://github.com/iris-contrib/cloud-native-go)
* [Community & Support](#-community)

View File

@ -15,6 +15,7 @@ It doesn't always contain the "best ways" but it does cover each important featu
- [Tutorial: How to turn your Android Device into a fully featured Web Server (**MUST**)](https://twitter.com/ThePracticalDev/status/892022594031017988)
- [POC: Convert the medium-sized project "Parrot" from native to Iris](https://github.com/iris-contrib/parrot)
- [POC: Isomorphic react/hot reloadable/redux/css-modules starter kit](https://github.com/kataras/iris-starter-kit)
- [Tutorial: DropzoneJS Uploader](tutorial/dropzonejs)
### Structuring

View File

@ -1,7 +1,7 @@
This is the part 1 of 2 in DropzoneJS + Go series.
- [Part 1: How to build a file upload form](README.md)
- [Part 2: How to display existing files on server](README_NEXT.md)
- [Part 2: How to display existing files on server](README_PART2.md)
# DropzoneJS + Go: How to build a file upload form

View File

@ -1,7 +1,7 @@
This is the part 2 of 2 in DropzoneJS + Go series.
- [Part 1: How to build a file upload form](README.md)
- [Part 2: How to display existing files on server](README_NEXT.md)
- [Part 2: How to display existing files on server](README_PART2.md)
# DropzoneJS + Go: How to display existing files on server
@ -17,7 +17,7 @@ In this tutorial, we will show you how to display existing files on the server w
## Preparation
Install the go package "nfnt/resize" with `go get github.com/nfnt/resize`, we need it to create thumbnails.
Install the go package "github.com/nfnt/resize" with `go get github.com/nfnt/resize`, we need it to create thumbnails.
In previous [tutorial](README.md). We have already set up a proper working DropzoneJs upload form. There is no additional file needed for this tutorial. What we need to do is to make some modifications to file below: