Blueimp jquery ファイル アップローダを使用して追加のフォーム データを MYSQL に挿入しようとしています。しかし、私にはいくつかの問題があります。
私はデモ設定を使用しており、テンプレートのアップロードを次のコードに変更しました (* Notunuz 入力を追加しました)
<script id="template-upload" type="text/x-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
<tr class="template-upload fade">
<td class="preview"><span class="fade"></span></td>
<td class="title"><label>Notunuz: <input name="title[]"></label></td>
{% if (file.error) { %}
<td class="error" colspan="2"><span class="label label-important">Hata</span> {%=file.error%}</td>
{% } else if (o.files.valid && !i) { %}
<td>
<div class="progress progress-success progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><div class="bar" style="width:0%;"></div></div>
</td>
<td class="start">{% if (!o.options.autoUpload) { %}
<button class="btn btn-primary">
<i class="icon-upload icon-white"></i>
<span>Başlat</span>
</button>
{% } %}</td>
{% } else { %}
<td colspan="2"></td>
{% } %}
</tr>
{% } %}
</script>
- 追加のフォーム データを取得するには?
- 変更
.js
してUploadHandler.php
ファイルする方法は?
2 番目の質問は、特定の URL のアップロードにリダイレクトする方法です。