V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
iOS 开发实用技术导航
NSHipster 中文版
http://nshipster.cn/
cocos2d 开源 2D 游戏引擎
http://www.cocos2d-iphone.org/
CocoaPods
http://cocoapods.org/
Google Analytics for Mobile 统计解决方案
http://code.google.com/mobile/analytics/
WWDC
https://developer.apple.com/wwdc/
Design Guides and Resources
https://developer.apple.com/design/
Transcripts of WWDC sessions
http://asciiwwdc.com
Cocoa with Love
http://cocoawithlove.com/
Cocoa Dev Central
http://cocoadevcentral.com/
NSHipster
http://nshipster.com/
Style Guides
Google Objective-C Style Guide
NYTimes Objective-C Style Guide
Useful Tools and Services
Charles Web Debugging Proxy
Smore
johnhu9173
V2EX  ›  iDev

请教一个关于 WebKit 上传文件的的问题

  •  
  •   johnhu9173 · 2017-05-26 16:41:33 +08:00 · 3232 次点击
    这是一个创建于 2498 天前的主题,其中的信息可能已经有所发展或是发生改变。

    目前正在开发一个 mac 应用 其实就是内嵌了一个 Web,然后使用的是 WKWebView 在上传文件时走到

    -(void)webView:(WKWebView *)webView runOpenPanelWithParameters:(WKOpenPanelParameters *)parameters initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(NSArray<NSURL *> * _Nullable))completionHandler
    

    主要处理部分如下:

                    //From WKWebView
                    if (completionHandler)
                    {
                        NSMutableArray<NSURL *> *fileUrls = [NSMutableArray new];
                        for( NSString *path in tmpFiles )
                        {
                            [fileUrls addObject:[[NSURL alloc] initFileURLWithPath:path]];
                        }
                        completionHandler(fileUrls);
                    }
    

    问题表现就是上传中文文件会有乱码 有遇到过类似问题或者有头绪的吗
    ChatSet 什么都没有问题

    目前尚无回复
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2817 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 15:24 · PVG 23:24 · LAX 08:24 · JFK 11:24
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.