CodeIgniter:我无法从html-> ajax-> php的textarea获取值

时间:2019-03-20 01:09:48

标签: javascript php html ajax ckeditor

看来我无法从ajax的php中获取我的textarea的值。当我尝试像这样从var content = $('textarea[name=post_content]').val(); console.log(content);从html到javascript获取值时,它输出我textarea的值,但是当我使用ajax将其传递给控制器​​时,它不输出任何内容。

这是我的html代码:

<?php $attributes = array('id' => 'create_post_form'); ?>
        <?php echo form_open_multipart('', $attributes); ?>
            <label>Title:</label>
            <input type="text" name="title" placeholder="Enter Title" class="form-control" required>

            <label>Category:</label>
            <select name="category" class="form-control" required>
                <option value="">--------</option>
                <?php foreach ($categories as $category): ?>
                    <option value="<?php echo $category['id']; ?>"><?php echo $category['name']; ?></option>
                <?php endforeach ?>
            </select>

            <label>Upload Image:</label>
            <input type="file" name="userfile" placeholder="Upload Image" class="form-control">

            <label>Post Content:</label>
            <textarea class="form-control" rows="15" name="post_content" placeholder="Enter Content of Post" required></textarea>

            <button type="submit" class="btn btn-secondary submit-button form-control">Save</button>
        <?php echo form_close(); ?>

这是我的ajax:

$('#create_post_form').submit(function(e) {
e.preventDefault();

$.ajax({
    data : new FormData(this),
    method : 'post',
    dataType : 'json',
    url : base_url + 'posts/create',
    async : false,
    cache : false,
    contentType : false,
    processData : false,
    success : function(data) {
        if(data['status'] == 'success')
        {
            $('#main_container').load(data['redirect_url']);
        }
        else
        {
            $('.error_container').html(data['message']);
            $('.error_container').addClass('error-border');
        }
    }
});

});

这是我的控制器:

public function create()
    {
        $result['status'] = 'error';
        $result['message'] = $this->input->post('post_content');

        $this->output->set_content_type('application/json');
        $this->output->set_output(json_encode($result));
        $string = $this->output->get_output();
        echo $string;
        exit();
    }

在我的控制器中,我试图通过使用错误状态查看我的textarea的值,因此它将输出该值作为错误,以便我可以检查我是否获得了textarea的值。但是它没有回报。我也在用ckeditor。当我使用文本编辑器时,问题开始了。

<script type="text/javascript">
CKEDITOR.replace( 'post_content' );

感谢您的帮助。

3 个答案:

答案 0 :(得分:0)

尝试serialize()

$('#create_post_form').submit(function(e) {
e.preventDefault();

$.ajax({
    data :  $('#create_post_form').serialize(),
    method : 'post',
    dataType : 'json',
    url : base_url + 'posts/create',
    async : false,
    cache : false,
    contentType : false,
    processData : false,
    success : function(data) {
        if(data['status'] == 'success')
        {
            $('#main_container').load(data['redirect_url']);
        }
        else
        {
            $('.error_container').html(data['message']);
            $('.error_container').addClass('error-border');
        }
    }
});
});

如果这不起作用,请尝试按1个1个发布数据

$('#create_post_form').submit(function(e) {
e.preventDefault();

$.ajax({
    data : {
      post_content : $(":input[name='post_content']").val(),
      cat : $("select[name='category']").val(),
      /* and etc post the data what u need*/

},
    method : 'post',
    dataType : 'json',
    url : base_url + 'posts/create',
    async : false,
    cache : false,
    contentType : false,
    processData : false,
    success : function(data) {
        if(data['status'] == 'success')
        {
            $('#main_container').load(data['redirect_url']);
        }
        else
        {
            $('.error_container').html(data['message']);
            $('.error_container').addClass('error-border');
        }
    }
});

然后在您的控制器中尝试转储所有这样的POST数据

var_dump($_POST);
die();

答案 1 :(得分:0)

首先删除这两个:

contentType : false,
processData : false,

让您传递如下参数:

var dataObj = {
      post_content : $(":input[name='post_content']").val(),
      cat : $("select[name='category']").val()
};

并添加如下内容:

data: jQuery.param(dataObj), 
contentType: "application/x-www-form-urlencoded; charset=utf-8",

您传递的参数将类似于

post_content=post_content&cat=catValue

我希望这会有所帮助

答案 2 :(得分:0)

我找到了解决问题的方法。我使用CKEditor GetData来获取textarea的值,然后像post_content2一样将其附加到formData上,

var content = CKEDITOR.instances['post_content'].getData();
var formData = new FormData(this);
formData.append('post_content2', content);

我在这里找到了解决方法:how-can-i-get-content-of-ckeditor-using-jquery

感谢您的所有回复:)