我正在使用的反应-导出-excel的例子。每当我单击前端的导出按钮时,都会引发以下错误。
Uncaught TypeError: s.t.match is not a function
at write_sst_xml (xlsx.js:4334)
at write_sst (xlsx.js:8914)
at write_zip (xlsx.js:11784)
at write_zip_type (xlsx.js:11860)
at Object.writeSync [as write] (xlsx.js:11874)
at ExcelFile.
下面是我的应用程序在ReactJS组件中呈现的行,并保存为nav.jsx。
<span style="font-family: 'Open Sans', sans-serif;"> Home</span>
例外:
Uncaught Error: The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}}
我的react本机应用程序下面的代码需要显示一个简单的背景图像,我在下面的代码中使用它(我使用css和js),当我运行该代码时,我得到以下错误,它告诉我没有定义宽度参数,尽管我是如何解决这个问题的?
错误宽度本机反应:
:19 in handleException
at node_modules/react-native/Libraries/Core/ReactFiberErrorDialog.js:43:2 in showErrorDialog
at node_modules/react-native/Libraries/ReactNative/renderAppli
当我运行跨平台的js时,我得到了上面的错误。这有没有引起任何人的注意?下面是跨平台的js。而最后的代码片段是index.android.js
var React = require('react-native');
//import React from 'react';
var {
//import {
AppRegistry,
Component,
StyleSheet,
Text,
View
} = React;
//} from 'react-native';
var AwesomeProject = Rea
我在谷歌上搜索过,但我不知道react。
当我点击'Connexion‘按钮时,我希望被转发到页面About.js。
我的app.js:
import React from 'react';
import {View, TextInput, StyleSheet, Text } from 'react-native';
import { Header, Button } from 'react-native-elements';
import About from './component/About';
export
我是React Native的初学者,我正在尝试在我的应用程序上建立一个注册页面。
此页面在Chrome浏览器中工作,它确实连接到Express服务器并在MongoDB中推送数据,虽然它在Chrome控制台中给出警告:index.js:1 Unexpected text node: A text node cannot be a child of a <View>.,但每次我在电子邮件输入中使用@时,它也会随机发生,当我在用户名和密码输入中使用其他字符时,它也会随机发生。
但当我在手机上使用Expo Go做同样的事情时,例如,当我在三个文本输入中输入@或其他类型的输入时,这个应用程
命令:
react-native init lahmuTen
cd lahmuTen/
ls
react-native run-ios
结果:
Application lahmuTen has not been registered. This is either due to a require() error during initialization or failure to call AppRegistry.registerComponent.
runApplication
AppRegistry.js:99
__callFunction
MessageQueue.
我目前正在使用React Router v4,我正在尝试渲染存储为不同.js文件的页面,并定义要匹配的url,以便渲染正确的.js file.But。我已经尝试了几个教程,但我无法做到。
下面是相同的代码。
//App.js
import React from 'react';
import ReactDOM from 'react-dom';
import logo from './site_logo.png';
import {logo_styles,search_box_style,submit_button_style,shopping
我试图使用Constants.statusBarHeight将视图从react本机的状态栏中分离出来,我使用expo install expo-constants安装了常量。
但是我发现了这个错误:
TypeError: undefined is not an object (evaluating '_expoConstants.Constants.statusBarHeight')
at node_modules\react-native\Libraries\LogBox\LogBox.js:149:8 in registerError
at node_modules\rea
我已经尝试使用在我的应用程序中集成instagram登录,它目前的抛出错误,我已经做了下面的更改,使它工作也试图遵循一个特定的解决方案在,但似乎没有工作,任何帮助将不胜感激。
ERROR Invariant Violation: View config getter callback for component `RCTModalHostView` must be a function (received `undefined`).
This error is located at:
in RCTModalHostView (at Modal.js:258)
in Modal (at I
我以前是在使用react &我是新来的,我尝试在我的应用程序中导航两个组件,我使用的是react导航,我不知道这是不是最简单的方法
我有app.js和Sign.js
app.js
import * as React from 'react';
import {NavigationContainer} from '@react-navigation/native';
import {Provider as PaperProvider} from 'react-native-paper';
import {createNativeStackN
我正在尝试建立一个5个屏幕的应用程序,这是我的代码。++添加了APP.JS // ./App.js
import React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { MainStackNavigator } from "./Screens/StackNavigator";
import DrawerNavigator from "./Screens/DrawerNavigator";
c
我一直在使用react-native-gradient,我得到了关于这个包的以下错误。
错误
Invariant Violation: requireNativeComponent: "BVLinearGradient" was not found in the UIManager.
This error is located at:
in BVLinearGradient (at react-native-linear-gradient/index.ios.js:54)
in LinearGradient (at SignupLogin.js:46)
我想在登录后重定向到另一个页面。
App.js
import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';
import { createStackNavigator, createAppContainer } from 'react-navigation';
import Login from './app/components/Login';
import Home from
当我试图格式化我的component时,我得到了以下错误:
invariant.js?d8db:42 Uncaught Error: Objects are not valid as a React child (found: object with keys {paddingTop, paddingBottom}). If you meant to render a collection of children, use an array instead.
in div (created by Article)
in div (created by Article)
我正在为一个新的React Native项目设置用户身份验证框架,以解决这些错误。我有两个从App.js调用的导航堆栈。似乎只要我把它们包装在<AuthContext.Provider>中,我就会得到下面的错误。如果我删除<AuthContext.Provider>,屏幕可以正常工作,没有错误。我已经浏览了我能在useContext钩子上找到的所有文档,将其与我的代码进行了匹配,但我无法精确地指出我做错了什么。错误: Error: Element type is invalid: expected a string (for built-in components)