是这样的,我在模版上用了fileinput.js来上传图片,添加到数据库什么的没问题,问题是在更新数据表上。<input id="file1" class="file" type="file" value="{$res.cover}" multiple data-max-file-count="1" name="pic[]">发现thinkphp的upload,获取不到原来存在的图片,只有新添加的才能获取到,这个该如何解决呢?
1 回答
Cats萌萌
TA贡献1805条经验 获得超9个赞
if( 不是 == {$res.cover}应该是thinkphp的模板变量?) {
我不知道,没用过fileinput.js;
exit;
}
file类型的输入框,没法获取之前的值。
我的解决方式是:
<div id="parent">
<input type="text" id="t_file" value="{$res.cover}" readonly>
<input type="file" id="f_file" class="hide" name="pic[]" accept="image/*">
</div>
<style>
.hide{display:none;}
</style>
<script>
$('#t_file').click(function(){
$(this).addClass('hide').siblings().removeClass('hide');
});
</script>
添加回答
举报
0/150
提交
取消