react native中Unable to load script from assets 'index.android.bundle'解决方案





刚刚朋友问我,说是创建好一个项目,运行后报错:Unable to load script from assets ‘index.android.bundle‘,以前好好的没出现这种现象,于是我找到一个解决方案,分享一下。





解决这个问题的方案是:

进入你该项目的根目录下的 android目录下的app目录下的src文件下的mian文件,(可能说的有点绕),在main件夹下,创建一个assets文件,这个文件是rn的资源文件夹!

之后用dos进入你的项目根目录,执行一下命令:

react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res

命令执行成功后返回如下:

好,那接下来就可以在做运行你的命令了,react-native run-android

现在上述问题解决了,但是新问题又出现了,log控制台没有弹出来,所以接下来就会去找这个问题的答案,如果你遇到同样的问题,如果你已经找到了答案,欢迎分享!

react native中Unable to load script from assets 'index.android.bundle'解决方案

时间: 2024-10-16 19:58:04

react native中Unable to load script from assets 'index.android.bundle'解决方案的相关文章

项目初始化以后出现:Unable to load script from assets 'index.android.bundle

Mac中真机测试React Native project时出现Unable to load script from assets 'index.android.bundle' 2018年01月21日 01:59:38 neuHenry 阅读数:1186 版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.csdn.net/u010347226/article/details/79117940 刚接触学习React Native,在进行真机调试时,报错出现Unable

Unable to load script from assets 'index.android.bundle' 出错?

野路子太多,坑人真的!F**k 言归正传,当你运行 react native 程序的时候出现这个错误 ,如果您使用Windows,请按以下方式运行命令,或者如果出现错误"无法找到条目文件index.android.js",那么我这一招能救你 第一步(创建缺失的目录):mkdir android\app\src\main\assets 第二步(在创建好的目录添加程序需要的文件):react-native bundle --platform android --dev false --en

[React-Native] Unable to load script from assets 'index.android.bundle'.

react native for android 抛出下面异常,解决方法: java.lang.RuntimeException: Unable to load script from assets 'index.android.bundle'. https://stackoverflow.com/questions/44446523/unable-to-load-script-from-assets-index-android-bundle-on-windows (in project dir

unable to load script from assets 'index.android bundle'

在Android手机上运行React-native项目时 报错:unable to load script from assets 'index.android bundle'  ,make sure your bundle is packaged correctly or youu're runing a packager server 解决方案: 第一步:在  android/app/src/main 目录下创建一个  assets空文件夹 第二步:执行 下面这段命令 react-nativ

Node升级 启动RN报错:react-native启动时红屏报错:Unable to load script.Make sure you're either running a metro server or that

1. 项目中在android/app/src/main/创建文件夹  assets 2.项目中执行命令 1. 项目中在android/app/src/main/创建文件夹  assets 2.项目中执行命令 react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle

react-native启动时红屏报错:Unable to load script.Make sure you're either running a metro server or that ....

一.报错信息内容 我是在Android Studio中运行启动react-native项目时报的这个错误 1.报错提示:Unable to load script.Make sure you're either running a metro server( run 'react-native start' ) or that your bundle 'index.android.bundle' is packaged correctly for release. 2.中文翻译:无法加载脚本.请

react native中一次错误排查 Error:Error: Duplicate resources

最近一直在使用react native中,遇到了很多的坑,同时也学习到了一些移动端的开发经验. 今天在做一个打包的测试时,遇到了一个问题,打包过程中报错“Error:Error: Duplicate resources”,什么意思呢,就是打包资源有重复,后来查看了一下,发现打包到android/app/src目录下的静态文件重名了. 重现步骤: 1:通过vscode打开项目,运行打包命令 react-native ram-bundle --entry-file index.js --platfo

React Native中的网络请求

React Native中的网络请求fetch使用方法最为简单,但却可以实现大多数的网络请求,需要了解更多的可以访问: https://segmentfault.com/a/1190000003810652 /** * Sample React Native App * https://github.com/facebook/react-native * 周少停 2016-09-28 * fetch请求数据 header 参数 response转json 请求方式 */ import React

react native中如何往服务器上传网络图片

1 let common_url = 'http://192.168.1.1:8080/'; //服务器地址 2 let token = ''; //用户登陆后返回的token 3 /** 4 * 使用fetch实现图片上传 5 * @param {string} url 接口地址 6 * @param {JSON} params body的请求参数 7 * @return 返回Promise 8 */ 9 function uploadImage(url,params){ 10 return