基本的なhtml
形式は次のとおりです。
<?php echo form_open( 'controller' ); ?>
<fieldset>
<input type="text" name="field_name_1" value="<?php echo set_value('field_name_1'); ?>"/>
<input type="file" name="field_name_2" value="<?php echo set_value('field_name_2'); ?>"/>
// more dynamically added form fields
<input type="submit" />
</fieldset>
<?php echo form_close(); ?>
jQuery Form Pluginを介してinput[type=file]
(他の入力タイプと一緒に)コントローラーに送信したいと思います。ajax
以下のコードは、を除く他のすべての入力タイプで機能しinput[type=file]
ます。
<script src="http://malsup.github.com/jquery.form.js"></script>
var options = {
url: "<?php echo site_url('new_account/validate_new_account'); ?>",
type: 'POST',
dataType: 'json',
success: function(data) {
if (data.length === 0) {
alert('Form successfully submitted!');
} else {
alert("Some fields weren't answered successfully. Please answer them.");
// attach server-side form validations to respective fields
$.each(data, function(key, value){
var container = '<div class="error">'+value+'</div>';
$('.form-element input[name="'+key+'"]').after(container);
});
}
}
};
$('#main-submit').click(function(e) {
$('#professional-form').valid(); // jQuery validate
$('#professional-form').ajaxSubmit(options);
e.preventDefault(); // redirect to other place only if successful form
});
他の入力フィールドは正常に送信されますが、CodeIgniterはまだファイルを受信しません。これを修正する方法を知っていますか?