若依框架使用自带的方法进行图片上传

按照修改为例子,
html页面

回显的话input框和img显示图片的要加th:field="*{studentPic}"一个是添加到数据库的,一个是显示的

<div class="form-group">
                <label class="col-sm-2 control-label">学生照片:label>
                <div class="col-sm-10">
                    <input name="studentPic" id="pic" th:field="*{studentPic}" class="form-control" type="hidden">
                    <a id="url"><img th:src="*{studentPic}" style="width: 90px;height: 90px">a>
                    <input type="file" id="studentPic">

                div>
            div>

当元素的值发生改变时,会发生 change 事件。

// 上传文件
        $("#studentPic").change(function () {
            var data = new FormData();
            data.append("file", $("#studentPic")[0].files[0]);
            $.ajax({
                type: "POST",
                url: ctx + "common/upload",
                data: data,
                cache: false,
                contentType: false,
                processData: false,
                dataType: 'json',
                success: function(result) {
                    // alert(JSON.stringify(result))
                    if (result.code == web_status.SUCCESS) {
                        $("#url img").attr("src",result.fileName)
                        $("#pic").val(result.fileName)
                    }
                },
                error: function(error) {
                    alert("图片上传失败。");
                }
            });
        })

页面显示

{
					field: 'studentPic',
					title: '学生照片',
					formatter: function (value, row, index) {
						return '<img src="' + value + '" width="50" height="50">';
					}
				},

自定义文件上传的地址
若依框架使用自带的方法进行图片上传_第1张图片

使用的是若依自带的上传文件的方法
若依框架使用自带的方法进行图片上传_第2张图片
若依框架使用自带的方法进行图片上传_第3张图片

你可能感兴趣的:(开源,js,java,html)