Cocoa中WebView允许选择本地上传文件
Cocoa中使用 webview 加载URL显示网页,在进行选择文件上传时候
1 | <input type="file" name="uploadfile"> |
在webview上不能正常的弹出选择器,cef正常。
WebUIDelegate
解决该问题只需要实现 WebUIDelegate
的代理方法
1 | - (void)webView:(WebView *)sender runOpenPanelForFileButtonWithResultListener:(id<WebOpenPanelResultListener>)resultListener; |
实现内容
1 |
|
参考
- https://developer.apple.com/documentation/webkit/wkuidelegate/1641952-webview?language=objc
- https://stackoverflow.com/questions/33642521/simple-swift-cocoa-app-with-webkit-upload-picture-doesnt-work/33694264#33694264
- https://stackoverflow.com/questions/7626463/how-to-allow-files-uploading-with-webview-in-cocoa