field

The name of the form field that will be used for sending the files to the server.
If not specified, the name attribute of the file input element will be used.

<input type="file" name="files" id="files" />

<script type="text/javascript">
    jQuery(function ($) {
        $('#files').shieldUpload({
            async: {
                enabled: true,
                save: {
                    url: "/upload/save",
                    field: "files"
                },
                remove: {
                    url: "/upload/remove",
                    method: "DELETE",
                    field: "fileNames"
                }
            }
        });
    });
</script>