Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
323 views
in Technique[技术] by (71.8m points)

fileinput.js thinkphp如何在后台取到值?

是这样的,我在模版上用了fileinput.js来上传图片,添加到数据库什么的没问题,问题是在更新数据表上。

<input id="file1" class="file" type="file" value="{$res.cover}" multiple data-max-file-count="1" name="pic[]">

发现thinkphp的upload,获取不到原来存在的图片,只有新添加的才能获取到,这个该如何解决呢?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...