我正在努力修复我的 expo 应用程序。重置密码时,它给出了此错误:TypeError: undefined is not an object (evaluating '_this2.state.notification.data')我的重置密码代码如下所示import React from 'react';import {View,ScrollView,Text,Image,StyleSheet
2020-10-27
export default class Signin extends Component {state ={errorMessage: null}在这里我使用 apisauce 和凭据来测试连接 signin = async() => {try{const response = await api.post('/auth/authenticate')({email:'[email prot
2021-01-08
我的代码 -export default Users = [{id: 1,email: "[email protected]",username: "user1",password: "password",userToken: "token123",},{id: 2,email: "[email protected]",username: "user2",password: "pass1234",
2021-06-14
我对 React Native 还只是个新手。当我保存我的 React Native 项目时,我看到此 TypeError 此错误:我相信当我保存时会发生这种情况,并且它没有“this.card = card”的初始参数,但我不知道如何在函数中设置它CODE:import React from "react";import {TouchableOpacity,StyleSheet,View,But
2021-08-04
应用程序使用 expo 创建,并与 expokit 分离。我使用的是 expoKit 版本 27。它仅在首次安装时崩溃,刷新后应用程序按预期工作。https://i.sstatic.net/SUbRQ.png
2018-05-11
我在手机上调试时可以正常运行我的应用,但通过运行 npx react-native run-android --variant=release或通过 android studio 制作发布版 apk,它一打开就会崩溃。对于 logcat 中的内容,我认为 react-native-background-task 可能是罪魁祸首。即使我尝试卸载它。也许它没有正确卸载。adb logcat *:Ep(
2020-08-21
我之前见过这个问题,但通过 Import / Export 花括号解决它的方法似乎不是根本原因。我可以尝试将一个功能组件添加到我的页面 React.js 中,该组件将包含从 Expo 导入的视频。它似乎会导致错误,我觉得这与 VideoInstance 中的 Video 类有关,导致错误,但我不确定。Phase2.js页面import React from 'react'import { View
2022-11-23
使用 Expo 构建 React Native 应用时,Javascript 捆绑包在出现错误无法从“src/containers/MatchlistSwipeContainer.tsx”解析“../stores/__fixtures__/matchlist/matchlistSourceFixture”后失败,尽管我 100% 确定此文件存在,并且此实例中的相对路径是正确的 - 尤其是当我使用
2018-06-12
将 expo-cli 升级到最新版本后。我尝试使用“expo start”启动我的应用程序,但出现此错误 C:\Users\DevLewa\Desktop\app\AgroSprite>expointernal/modules/cjs/loader.js:638throw err;^Error: Cannot find module 'split-string'at Function.Mo
2019-07-29
Error: Cannot find module 'C:\Users\senyo\AppData\Roaming\npm\node_modules\expo-cli\bin\expo.js'at Function.Module._resolveFilename (internal/modules/cjs/loader.js:603:15)at Function.Module._load (int
2019-11-20
该应用在 Android 和 iOS 上均可构建和运行,我能够将我的应用发布到 expo。但我从所有expo build:...命令中收到相同的错误消息。我想构建一个 apk,并不真正关心 iOS 的 ipa。我收到的错误是Request failed with status code 500Set EXPO_DEBUG=true in your env to view the stack tra
2020-01-02
internal/modules/cjs/loader.js:895throw err;^错误:无法找到模块“C:\Users\Jobay\AppData\Roaming\npm\node_modules\expo-cli\bin\expo.js”at Function.Module._resolveFilename (internal/modules/cjs/loader.js:892:15)a
2020-10-26
我尝试将 glb 文件加载为:const asset = Asset.fromModule(require('../assets/webgl/RModelNoKeys.glb'));#metro.config.jsmodule.exports = {resolver: {assetExts: ['db', 'mp3', 'ttf', 'obj', 'png', 'jpg', 'gltf', 'gl
2021-05-30
我正在与小组成员一起研究一个 React Native 项目。创建该项目的小组成员在运行该项目时没有遇到任何问题。我已全局安装了 expo,但无法运行该程序:Unable to find expo in this project - have you run yarn / npm install yet?├─ action C:\Users\thoma\AppData\Roaming\npm\no
2021-06-07
我安装了一个 expo-constant 进行测试,之后我通过npm uninstall expo-constants现在当我运行我的应用程序时出现错误:Unable to resolve module expo-constants fromC:\Users..\node_modules\expo-font\build\FontLoader.js: expo-constantscould not
2021-12-17