开发者问题收集
我有一个使用 React 导航的附加信息组件:export class AdditionalInfo extends NavigationPureComponent {static navigationOptions = ({ navigation }) => ({headerLeft: <Button icon="close" onPress={() => navigation.goBack(n
嗨,我正在尝试在我的 react-native 项目上运行“yarn android”。并且遇到了以下错误:yarn android v0.27.5$ react-native-scripts android10:37:45 AM: Starting packager...10:39:34 AM: Starting Android...10:39:37 AM: Packager started!T
我正在使用react-native-oauth,并在尝试授权时收到此错误(见底部的红色图片)。我搜索了一下,只找到了这个类似的未解答问题。我查看了源代码,发现错误发生的位置在第 954 行,似乎是因为moduleIDs.count应该等于methodIDs.count和paramsArrays.count: if (RCT_DEBUG && (moduleIDs.count != methodI
我正在使用 react,我试图简单地显示我的弹出窗口 onclick但我有这个错误Uncaught TypeError: Cannot set property 'onclick' of nullat eval (index.js:33)at Object../src/index.js (main.js:680)at __webpack_require__ (main.js:20)at eval
我正在尝试调试在 Chrome 中的 VS 模拟器上运行的 react-native 应用。我目前收到的错误是“无法将属性‘volume’设置为 null”。这就像我开始以来遇到的第 4 或第 5 个神秘错误,但这是我遇到的第一个错误。我将概述所有配置步骤,以防我之前搞砸了什么:使用 react-native init myapp 初始化项目使用 react-native start --host
这是分别从 firebase 发送和接收数据的代码。class Fire {addAppointment(currentDate, addComplete) {firebase.firestore().collection("appointment").add({date: currentDate.date,createdAt: firebase.firestore.FieldValue.serv
我试图弄清楚如何在 React-Native 应用中使用 Jest 测试“onPress”事件,以确保调用正确的函数。我查阅了文档和 Google,但在 React-Native 中找不到解决方案。这是我发现的应该适用于带有enzyme的 React-Native 的内容:const mockFunc = jest.fn();const component = mount(<MyComponent
我遇到了这个问题:TypeError:无法读取未定义的属性“initialPreferences”1 | import { Appearance } from 'react-native-appearance';| ^2 |3 | export const modedColor = (lightModeColor, darkModeColor) => {4 | return Appearanc
无法从 expo 获取 localhost api。const search = async(type) => {let response = await fetch(http://localhost:3000/api/${type}, {accept: 'application/json'});let result = await response.json();return result;co
我正在尝试在 React Native 应用中设置 redux-persist。但是我遇到了这个错误:console.error: "redux-persist failed to create sync storage. fallingback to "noop" storage我试图在“src/redux/index.js”中将存储从 storage 更改为 AsyncStorage,但仍然遇
我正在使用 redux-persist 将数据存储在我的 react-native 应用程序中。这是代码:store.jsimport { createStore, compose, applyMiddleware } from 'redux';import thunk from 'redux-thunk';import {persistStore,persistCombineReducers,}
我在我的 react-native 项目中安装了@react-native-community/cli-platform-android,现在我在运行npm run android时收到“错误无法读取未定义的属性(读取‘配置’)。TypeError:无法读取未定义的属性(读取‘配置’)”。
我有一个状态数组,状态的值显示在视图中,我还有一个文本视图,我想让文本输入的值改变状态的值,这样状态视图中的值就会改变,但不会改变状态视图中的值,即如果我输入a,视图不会改变,如果我输入ab,它会返回一个错误,提示undefined 不是对象(正在评估 item.toLowerCase)请问我哪里可能错了class App extends React.Component {constructor(
我正在尝试此组件react-native-calendar它总是给出错误null is not an object (evaluating this.state.date)我尝试初始化名为 state 的状态变量并为其分配日期值,但错误仍然存​​在。var Calendar = require('react-native-calendar-component');export default cl
我是 react-native 的新手,正在创建一个用于学习的演示。我的 DataDetail 文件的第 11 行出现错误DataDetail.js Unexpected token (11:2)。以下是我的 DataDetail 文件的代码。1. //DataDetail.js2.3. import React from 'react';4. import {Text,View} from 'r