混编拿不到原生的目录路径
MissingPluginException(No implementation found for method getTemporaryDirectory on channel plugins.flutter.io/path_provider)
我出现这个问题的前奏是:
Flutter里面的RepaintBoundary方法用于截取Widget来作为图片,涉及到的方法如下:
//截取RepaintBoundary包裹下的Widget作为图片
void _onCaputrePicture()async {
try {
RenderRepaintBoundary boundary =_key.currentContext.findRenderObject();
double pix = window.devicePixelRatio; // 获取当前设备的像素比
var image =await boundary.toImage(pixelRatio: pix);
ByteData byteData =await image.toByteData(format: ImageByteFormat.png);
Uint8List pngBytes = byteData.buffer.asUint8List();
// getTemporaryDirectory().then((value) => print(value));
Directory tempDir =
await getTemporaryDirectory(); //需添加 path_provider: 1.6.11 插件
File file =new File('${tempDir.path}/${_images.length}.png');
print("===》" + file.path);
if (!file.existsSync()) {
file.createSync();
}
file.writeAsBytesSync(pngBytes); //写入文件
_images.add(file.path); //添加一个路径
setState(() {}); //刷新界面
}catch (e) {
print(e);
}
},
当我点击按钮调用_onCaputrePicture方法时,报MissingPluginException(No implementation found for method getApplicationDocumentsDirectory on channel plugins.flutter.io/path_provider),
一脸懵逼,,上github上到处找答案,看到如图01解决方案:
发现是我未注册的原因,于是按照01图上第4点解决问题。在AppDelegate.m里的didFinishLaunchingWithOptions方法上注册,代码如下:
self.flutterEngine = [[FlutterEngine alloc] initWithName:@"flutter_XXX"];
[self.flutterEngine run];
[GeneratedPluginRegistrant registerWithRegistry:self.flutterEngine];
xcode-->run后进入的flutter页面,发现不管任何flutter页面都是同一个页面(原因就是flutter项目的路由无效,进入了默认页面),,,虽然不是进的对应页面,但是此时发现不再报如题的错误,可以正常截图,将图片存入对应的目录,以便后续逻辑处理。也就是说,注册之后可以正常的插件方法交互。。
此时才反应过来,我只需要到我封装的flutter类里面去注册即可,避免在AppDelegate.m里面单独注册,这样对应起来就是01图上的第3点,最后补上代码:
self.flutterController = [[FlutterViewController alloc] initWithProject:nil initialRoute:route nibName:nil bundle:nil];
[GeneratedPluginRegistrant registerWithRegistry:self.flutterController];//必须注册 否则拿不到插件方法
最后push或者present进入Flutter页面。
注册之后你可以在原生FLTPathProviderPlugin.m下打断点看,如图02
简单来说就是少了这一句话 :[GeneratedPluginRegistrant registerWithRegistry:self.flutterController]; 不要在AppDelegate.m去注册,混编的话就是在进入每个flutter页面前去注册,所以文章前面提到的AppDelegate.m里面的代码移除掉。
若是安卓报此错误,参考文章:https://blog.csdn.net/feiyangyang980/article/details/107664101