我正在编写一个小部件插件;我想插入一个输入标记:<input type="file">
在我的小部件插件管理面板中浏览模式;但我无法保存它的值(模式的地址)。看来<input type="file">
在小部件插件中不起作用。是否正确?是否有其他方法可以从管理面板浏览文件?
以下是小部件表单函数中的输入文件代码:
<fieldset id="customize">
<label>Browse pattern:</label>
<input type="file" accept="image/*" size="15" id="<?php echo $this->get_field_id(\'menupattern\'); ?>" name="<?php echo $this->get_field_name(\'menupattern\'); ?>" value="<?php echo $instance[\'menupattern\']; ?>" />
</fieldset>
@s\\u ha\\u dum,我已经阅读了关于
enctype
; 但这没有什么帮助。请注意,在小部件插件中,我必须通过小部件发送数据
form( $instance )
函数,我想让用户从Web服务器中选择一张照片;不要上传!