14

我遇到了一个奇怪的问题。当我在调试模式下运行我的应用程序时,我的按钮中的 onPress 处理程序不会触发。当我停止在调试模式下运行应用程序时,按钮按预期工作。

调试在我的模拟器上工作,但在真实设备上失败。

细节:

OS: Mac
react: "16.11.0"
react-native: "0.62.2"

代码

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 *
 * @format
 * @flow strict-local
 */

import React from 'react';
import {
  Button,
  SafeAreaView,
  StyleSheet,
  ScrollView,
  View,
  Text,
  StatusBar,
} from 'react-native';

import {
  Header,
  LearnMoreLinks,
  Colors,
  DebugInstructions,
  ReloadInstructions,
} from 'react-native/Libraries/NewAppScreen';

const App = () => {
  return (
    <>
      <StatusBar barStyle="dark-content" />
      <SafeAreaView>
        <ScrollView
          contentInsetAdjustmentBehavior="automatic"
          style={styles.scrollView}>
          <Header />
          {global.HermesInternal == null ? null : (
            <View style={styles.engine}>
              <Text style={styles.footer}>Engine: Hermes</Text>
            </View>
          )}
          <View style={styles.body}>
            <Button
              onPress={() => alert('Does not fire in debug mode')}
              title="Learn More"
              color="#841584"
              accessibilityLabel="Learn more about this purple button"
            />
            <View style={styles.sectionContainer}>
              <Text style={styles.sectionTitle}>Step One</Text>
              <Text style={styles.sectionDescription}>
                Edit <Text style={styles.highlight}>App.js</Text> to change this
                screen and then come back to see your edits.
              </Text>
            </View>
            <View style={styles.sectionContainer}>
              <Text style={styles.sectionTitle}>See Your Changes</Text>
              <Text style={styles.sectionDescription}>
                <ReloadInstructions />
              </Text>
            </View>
            <View style={styles.sectionContainer}>
              <Text style={styles.sectionTitle}>Debug</Text>
              <Text style={styles.sectionDescription}>
                <DebugInstructions />
              </Text>
            </View>
            <View style={styles.sectionContainer}>
              <Text style={styles.sectionTitle}>Learn More</Text>
              <Text style={styles.sectionDescription}>
                Read the docs to discover what to do next:
              </Text>
            </View>
            <LearnMoreLinks />
          </View>
        </ScrollView>
      </SafeAreaView>
    </>
  );
};

const styles = StyleSheet.create({
  scrollView: {
    backgroundColor: Colors.lighter,
  },
  engine: {
    position: 'absolute',
    right: 0,
  },
  body: {
    backgroundColor: Colors.white,
  },
  sectionContainer: {
    marginTop: 32,
    paddingHorizontal: 24,
  },
  sectionTitle: {
    fontSize: 24,
    fontWeight: '600',
    color: Colors.black,
  },
  sectionDescription: {
    marginTop: 8,
    fontSize: 18,
    fontWeight: '400',
    color: Colors.dark,
  },
  highlight: {
    fontWeight: '700',
  },
  footer: {
    color: Colors.dark,
    fontSize: 12,
    fontWeight: '600',
    padding: 4,
    paddingRight: 12,
    textAlign: 'right',
  },
});

export default App;

还有其他人遇到同样的问题吗?

谢谢,

更新:我尝试创建一个新项目,添加一个简单的按钮,然后尝试调试。这个问题是可重现的。

4

5 回答 5

10

通过运行以下命令确保主机和设备之间没有时间差:adb shell "date" && date.

要修复它,请转到设置(设备)-> 日期和时间,禁用自动时间设置,然后重新启用它。

于 2020-07-24T09:22:04.057 回答
1

它也发生在我身上,因此要在调试时解决真实设备中的问题,只需转到您的真实设备设置 => 时间和数据 => 并关闭(切换)自动日期和时间(使用网络提供的时间)并离开它到手册,然后重新启动应用程序并在 Windows 中按 CTRL + D 进行调试工作,它将像在模拟器中一样工作注意 => 它在模拟器上工作,因为它从我们的系统中获取数据和时间。希望它有帮助

于 2020-06-25T11:23:54.337 回答
0

@fadly 的步骤确实对我有用,但不是原样,所以列出来

  1. 通过运行以下命令检查主机和设备之间的日期/时间差异:

adb shell "日期" && 日期。

  1. 要修复它,请转到设置(设备)-> 日期和时间,禁用自动时间设置,然后重新启用它。

  2. 试试 adb shell "date" && date。应该没有时差。

注意:如果仍然存在差异,则日期/时间未同步。尝试重置 wifi/移动数据。再次重复上述步骤。它应该工作。

于 2021-01-10T15:15:31.117 回答
0

设备上的时间与您的 PC 不同步 转到 PC和设备时间设置并重新启用自动时间设置

于 2020-09-29T07:09:28.093 回答
0

对我来说:adb shell "date" && date.这导致设备时钟提前约 1 秒。禁用/启用时间同步不起作用。所以我禁用了设备上的同步,然后打开对话框来编辑时间并保存它。这使我的设备落后了几秒钟。这解决了我的问题。


编辑:修复打破了计时器,即setInterval没有得到回调......

好吧,我想我需要onPress的比我需要的多setInterval……

于 2021-02-03T10:28:08.123 回答