tpl_form_field_image
本文整理于网络,仅供阅读参考,如有不妥之处,敬请批评指正!如果您想加入微擎社区版技术大牛微信群和QQ群,请联系微信: ccccyyyy4444 或者 QQ:155120699
tpl_form_field_image() - 图片上传与选择控件
说明
tpl_form_field_image($name, $value = '', $default = '', $options = array())
参数
名称 | 类型 | 说明 |
---|---|---|
$name | string | 表单input名称 |
$value | string | 表单input值 |
$default | string | 默认显示的缩略图 |
$options | array | 图片上传配置信息 |
$options详解
$options['width'] = '';
$options['height'] = '';
$options['global'] = '';// 是否显示 global 目录(公共目录)
$options['extras'] = array(
'image'=> 缩略图img标签的自定义属性及属性值 ,
'text'=> input 标签的自定义属性及属性值
)
示例
{php echo tpl_form_field_image('single-image');}
图片上传原形函数
util.image(val, callback, options);
参数
名称 | 类型 | 说明 |
---|---|---|
val | string | image 值 |
callback | string | 上传图片完成后,执行的回调函数 |
options | string | 上传选项 |
<script>
util.image('http://www.we7.cc/web/resource/images/gw-logo.png', function(){
...
...
},
{
auto : true,
fileNumLimit : 3,
fileSizeLimit : 3 * 1024 * 1024
});
</script>
如果看不懂微擎社区版二次开发手册或者遇到问题,请联系微信: ccccyyyy4444 或者 QQ:155120699 ,如果我们有空闲时间,可以免费为您答疑解惑。