gpt4 book ai didi

filepicker.io - 墨水文件选择器 : Issue showing mobile version in iframe

转载 作者:行者123 更新时间:2023-12-04 04:45:06 25 4
gpt4 key购买 nike

我正在尝试在移动站点版本中使用指向 iframe 的“容器”属性,但在这种情况下,inkfilepicker 会为桌面和移动设备发送桌面内容。在属性“容器”被删除时,我得到了一个包含移动内容的新标签。请指教。

selectFilepickerService: function(service){
var maxFilesize = $('#ufilepickContent form[name="filepickerConf"] input[name="max_file_size"]').val();
this.lastService = service;
filepicker.pick({
mimetypes: ['image/*'],
container: 'ufilepickService',
maxSize : maxFilesize,
services : service
}, $.proxy(function(fpfile){
this.saveImage(fpfile.url, fpfile.filename);
}, this));
},

最佳答案

例如,您可以使用 mobile: true 传递参数以强制移动模式

filepicker.pick({
mimetypes: ['image/*'],
container: 'ufilepickService',
mobile: true,
maxSize : maxFilesize,
services : service
}, $.proxy(function(fpfile){
this.saveImage(fpfile.url, fpfile.filename);
}, this));

关于filepicker.io - 墨水文件选择器 : Issue showing mobile version in iframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18330245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com