无法在节点模块中找到反应原生提示

时间:2017-12-15 15:39:52

标签: node.js react-native

我已安装react-native-prompt。 我可以看到它已添加到package.json,但我无法在node_modules找到它 - react-native-prompt中没有node_modules目录。当我尝试导入react-native-prompt时,它表示undefined不是对象。这是我的代码:

import React from 'react';
import Prompt from 'react-native-prompt';

const AddTaskPrompt = ({isVisible,onCancelCallBack,onSubmitCallBack}) => (
<Prompt
    title="ajouter une tache"
    placeholder="ex: ramenre du lait"
    defaultValue=""
    visible={isVisible}
    onCancel={() => onCancelCallBack()}
    onSubmit={value => onSubmitCallBack(value)} />
);
export default AddTaskPrompt;

package.json的内容与

相似
{
  "name": "fekri4",
  "version": "0.1.0",
  "private": true,
  "devDependencies": {
    "jest-expo": "23.0.0",
    "react-native-scripts": "1.8.1",
    "react-test-renderer": "16.0.0"
  },
  "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
  "scripts": {
    "start": "react-native-scripts start",
    "eject": "react-native-scripts eject",
    "android": "react-native-scripts android",
    "ios": "react-native-scripts ios",
    "test": "node node_modules/jest/bin/jest.js --watch"
  },
  "jest": {
    "preset": "jest-expo"
  },
  "dependencies": {
    "expo": "^23.0.4",
    "lodash": "^4.17.4",
    "react": "16.0.0",
    "react-native": "0.50.3",
    "react-native-action-button": "^2.8.3",
    "react-native-elements": "^0.18.5",
    "react-native-modal": "^4.1.1",
    "react-native-prompt": "^1.0.0"
  }
}

1 个答案:

答案 0 :(得分:0)

这可能无法解决您的问题,但它会确认npmreact-native-prompt按预期工作。另外,这是我可以分享图像来证明它的唯一方法。

这是我测试的方式。

  1. $ mkdir npm-test && cd npm-test
  2. $ npm init -y
  3. $ npm install react-native-prompt
  4. 在这种情况下工作正常。一个想法是你可能以前在全球安装了包。我不确定npm是否足够聪明,可以说,“嘿,我已经全局了,所以在这种情况下我也不会在本地创建它”。只是一个想法。

    enter image description here