Summernote编辑器-上传后无法查看图像

时间:2018-09-06 04:51:52

标签: php ajax summernote

从我的文件夹上传后,无法查看夏季笔记中上传的图像

<script>
    $('#summernote').summernote({
        height: ($(window).height() - 300),
        callbacks: {
            onImageUpload: function(image) {
                uploadImage(image[0]);
            }
        }
    });

    function uploadImage(image) {
        var data = new FormData();
        data.append("image", image);
        $.ajax({
            url: 'Your url to deal with your image',
            cache: false,
            contentType: false,
            processData: false,
            data: data,
            type: "post",
            success: function(url) {
                var image = $('<img>').attr('src', 'http://' + url);
                $('#summernote').summernote("insertNode", image[0]);
            },
            error: function(data) {
                console.log(data);
            }
        });
    }
</script>

这是我在索引页中的脚本。请帮助我

1 个答案:

答案 0 :(得分:0)

url: 'Your url to deal with your image',

在上面的行中,您必须输入用于处理文件上传并返回(回显其网址)的.php文件的名称。

例如:

url: 'upload.php',

然后,您当然必须创建一个正确的upload.php。