react-native – 在React Native中记录当前目录/文件名
发布时间:2020-12-15 20:31:25 所属栏目:百科 来源:网络整理
导读:我想知道是否有办法在React Native中记录当前文件名或目录.与NodeJS如何使用__filename和__dirname类似. 解决方法 不,这是不可能的,因为所有源代码被捆绑在一起成为一个大文件,然后提供源映射,以便您可以在原始结构中调试它. 您可以通过在代码中的某个位置调
我想知道是否有办法在React Native中记录当前文件名或目录.与NodeJS如何使用__filename和__dirname类似.
解决方法
不,这是不可能的,因为所有源代码被捆绑在一起成为一个大文件,然后提供源映射,以便您可以在原始结构中调试它.
您可以通过在代码中的某个位置调用此代码段来查看: console.log(new Error().stack); 在常规的javascript中,您将获得包含文件和行号的完整跟踪,但在react-native中,您可以获得如下内容: Error at Login (http://localhost:8081/index.android.bundle?platform=android&dev=true&hot=true&minify=false:83009:9) at instantiate (http://localhost:8081/index.android.bundle?platform=android&dev=true&hot=true&minify=false:5712:18) at new Login (eval at proxyClass (http://localhost:8081/index.android.bundle?platform=android&dev=true&hot=true&minify=false:5730:16),<anonymous>:4:17) at ReactCompositeComponentWrapper._constructComponentWithoutOwner (http://localhost:8081/index.android.bundle?platform=android&dev=true&hot=true&minify=false:22051:19) at ReactCompositeComponentWrapper._constructComponent (http://localhost:8081/index.android.bundle?platform=android&dev=true&hot=true&minify=false:22033:13) at ReactCompositeComponentWrapper.mountComponent (http://localhost:8081/index.android.bundle?platform=android&dev=true&hot=true&minify=false:21952:15) at Object.mountComponent (http://localhost:8081/index.android.bundle?platform=android&dev=true&hot=true&minify=false:20425:29) at ReactCompositeComponentWrapper.performInitialMount (http://localhost:8081/index.android.bundle?platform=android&dev=true&hot=true&minify=false:22134:28) at ReactCompositeComponentWrapper.mountComponent (http://localhost:8081/index.android.bundle?platform=android&dev=true&hot=true&minify=false:22015:13) at Object.mountComponent (http://localhost:8081/index.android.bundle?platform=android&dev=true&hot=true&minify=false:20425:29)" 它向您显示真实的文件已经消失. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |