react native初学之路--报 operation not permitted错误
Posted 猿起
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react native初学之路--报 operation not permitted错误相关的知识,希望对你有一定的参考价值。
上午代码还没问题,下午突然就报这个错误了:
ERROR EPERM: operation not permitted, lstat ‘C:\Users\Administrator\Desktop\ReactNativeUpdate\app\build\generated\assets\shaders\debug‘
{"errno":-4048,"code":"EPERM","syscall":"lstat","path":"C:\\Users\\Administrator\\Desktop\\ReactNativeUpdate\\app\\build\\generated\\assets\\shaders\\debug"}
Error: EPERM: operation not permitted, lstat ‘C:\Users\Administrator\Desktop\ReactNativeUpdate\app\build\generated\assets\shaders\debug‘
at Error (native)
搞不懂什么原因,最后百度知道解决方案:打开项目node_modules/react-native/local-cli/server/server.js
找到 process.on(‘uncaughtException‘, error =>
{
这个方法,把最后一句 process.exit(11);
注释掉。
再次运行就ok了!
以上是关于react native初学之路--报 operation not permitted错误的主要内容,如果未能解决你的问题,请参考以下文章