分页和图片上传
Posted yl好久不见
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了分页和图片上传相关的知识,希望对你有一定的参考价值。
今天学习到的新知识
Posted yl好久不见
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了分页和图片上传相关的知识,希望对你有一定的参考价值。
{{$data->links()}}
</div>
/**
* 图片上传方法
*/
public function upload(){
$file = Input::file( ‘Filedata‘ );
if( $file->isValid() ){
$entension = $file->getClientOriginalExtension();//上传文件的后缀
$newName = date(‘YmdHis‘).mt_rand(100,999).‘.‘.$entension;//没后缀名的文件
$path = $file->move( base_path().‘/uploads/‘,$newName );//路径
$filepath = ‘uploads/‘.$newName;
return $filepath;
}
}
<tr>
<th>缩略图:</th>
<td>
<script src="{{asset( ‘resources/org/uploadify/jquery.uploadify.min.js‘ )}}" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="{{asset( ‘resources/org/uploadify/uploadify.css‘ )}}">
<input type="text" size="50" name="art_thumb">
<input id="file_upload" name="file_upload" type="file" multiple="true">
</td>
<script type="text/javascript">
<?php $timestamp = time();?>
$(function() {
$(‘#file_upload‘).uploadify({
‘formData‘ : {
‘timestamp‘ : ‘<?php echo $timestamp;?>‘,
‘_token‘ : ‘{{csrf_token()}}‘,
},
‘buttonText‘:‘图片上传‘,
‘swf‘ : ‘{{asset( ‘resources/org/uploadify/uploadify.swf‘ )}}‘,
‘uploader‘ : ‘{{url( "admin/upload" )}}‘,
‘onUploadSuccess‘ : function(file, data, response) {
$( ‘#art_thumb_v‘ ).attr( ‘src‘,‘/‘+data).css( {‘width‘:‘350px‘,‘heigth‘:‘50px‘} );
$( ‘input[name="art_thumb"]‘ ).val( data );
}
});
});
</script>
<style>
.uploadify{
display:inline-block;
}
.uploadify-button{border:none;border-radius:5px;margin-top:8x;}
table.add_tab tr td span.uploadify-button-text{color:#fff;margin:0}
</style>
</tr>
<tr>
<th></th>
<td>
<img id="art_thumb_v" >
</td>
</tr>
以上是关于分页和图片上传的主要内容,如果未能解决你的问题,请参考以下文章
带有分页和排序的 Spring Boot JPA 规范 API