我仍在学习 React Native,我正在尝试从 API 中检索数据并将其作为自定义单选按钮返回,但如果我调用 API,我会收到此错误:null is not an object (evaluating 'this.props.activities.map'){this.props.activities.map((val, index) => {let { key, type, placehol
2019-10-17
我对 React Native 还很陌生,但我正在尝试使用ImageBackground组件添加 png 作为背景图像。我的项目目录中的“assets”文件夹中有 png。当我在 iPhone 上使用 Expo 运行应用程序时,我收到此错误:TypeError:undefined 不是对象(评估“asset.scales”)这是我的代码:import React, {useState, Compo
2019-10-11
我正在做一个项目,需要将语音翻译成文本,我使用了 Expo 和 React-native-voice。**[未处理的承诺拒绝:TypeError:null 不是对象(评估“Voice.onSpeechStart = null”)]- node_modules\react-native-voice\src\index.js:23:10 在 removeAllListeners 中- node_mod
2019-09-21
嘿,我是 React Native 的新手,目前我正尝试使用来自 API 的数据将数据放入选择器中。我很困惑,它出现了错误,说 TypeError:null 不是对象(评估 this.state.schedules.map)。状态有问题吗,还是我误解了什么概念这是获取 APIexport function getSchedule (token, resultCB) {var endpoint =
2019-09-19
我正在使用 React Native 和 Firebase 实时数据库开发应用程序。在数据库中,我有一些如下所示的数据。myRoot||--myValue1: 0||--myValue2: 2然后,我想将这些值增加一并得到以下结果。myRoot||--myValue1: 1||--myValue2: 3为此,我使用了如下函数。myFunction = () => {const myRef = fi
2019-08-22
我开始将 React Native 与 Expo 结合使用,遇到了第一个问题。我想更改 Android 导航栏的颜色。不幸的是,我不知道该怎么做。我尝试使用https://github.com/thebylito/react-native-navigation-bar-color#readme,但它打印出以下错误:TypeError: TypeError: null is not an objec
2019-06-24
我为Picker组件创建了一个包装器,并且我想在条件中添加一个子项我尝试此代码render() {const { children, ...rest } = this.props;return (<Picker {...rest}>{rest.selectedValue === undefined ? (<Picker.Item value="1" label="1" />) : null}{ch
2019-06-04
在 App.js 中,如果我在tabBarComponent中分配this.state.cartAmount... 则会出现错误TypeError: TypeError: undefined is not an object (evaluating'_this.state.cartAmount')如果我将tabBarComponent设置为{(this.state != null) ? this.
2019-02-15
每次我尝试单击复选框时,都会看到上述错误我想单独选中下面显示的四个复选框,但我无法做到。请帮忙!代码如下:import * as React from 'react';import {Text,View,StyleSheet,TouchableOpacity,ScrollView,Button,} from 'react-native';import { Header, Icon } from '
2019-02-08
export default class Login extends React.Component {static navigationOptions = {title: 'Welcome',header: null};constructor(props) {super(props);state = {email: "",password: ""}}handleEmail = (text) =>
2019-02-01
我正在实现身份验证,我的 props 有问题。当我显示 props 时,我没有 propsauthState,所以我收到一个错误,我不明白它来自哪里,也无法解决。错误如下:[21:42:10] TypeError: undefined is not an object (evaluating '_this$props$authState.app_started')This error is loc
2019-01-27
我正在使用 React Native 构建移动应用程序。我遇到了 Nativ Base Toast 问题。当我第一次加载应用程序然后导航到票证状态时,如果我使用 android 返回按钮返回主页,则会弹出以下错误。以下是我的代码和错误截图。注意- 此错误并非每次都出现。如能得到任何帮助,将不胜感激。提前致谢Home.js 代码(在应用程序加载时呈现) import React, { Compone
2018-12-11
我正在为我的项目使用 wix 日历,我已经按照其他问题中提到的所有步骤操作了类似主题。我已经像这样编码了class TutorCalender extends Component {static navigationOptions = {header: null,final_array: {},tution_array: [],unavailable_array: []}componentWill
2018-10-02
我正在尝试启动并运行我的 React Native Redis 模块,但出现以下错误。当我尝试引用任何函数时TypeError: undefined is not an object (evaluating '_reactNativeRedispubsub.RedisClient.redisConnect')RedisClient.js/*** This exposes our Android c
2018-07-20
在从一个屏幕转换到另一个屏幕时,我收到一个对象未定义异常。我很清楚发生了什么,只是不确定是否有一种干净的方法来处理它,而不只是检查所有地方的未定义。这是我的场景:源屏幕引用 Redux 存储中的用户对象从源屏幕到目标屏幕启动导航。调用目标屏幕 componentDidMount(),我从 Redux 存储中清除用户对象。再次调用源屏幕 render(),由于我从存储中清除了用户,因此发生未定义
2018-04-29