3

安装 react-native 并运行新创建的 Xcode 项目后,我得到以下输出:

2015-03-26 15:35:05.865 React[1427:7950] CLTilesManagerClient: initialize, sSharedTilesManagerClient
2015-03-26 15:35:05.865 React[1427:7950] CLTilesManagerClient: init
2015-03-26 15:35:05.866 React[1427:7950] CLTilesManagerClient: reconnecting, 0x7fac1b289e40
RCTJSLog> "Running application "React" with appParams: {"rootTag":1,"initialProps":{}}. __DEV__ === true, development-level warning are ON, performance optimizations are OFF"
RCTJSLog> "Error: 
 stack: 
  React_render                                       index.ios.bundle:955
  _renderValidatedComponentWithoutOwnerOrContext     index.ios.bundle:16453
  _renderValidatedComponent                          index.ios.bundle:16479
  ReactCompositeComponent__renderValidatedComponent  index.ios.bundle:4860
  mountComponent                                     index.ios.bundle:15913
  ReactCompositeComponent_mountComponent             index.ios.bundle:4860
  mountComponent                                     index.ios.bundle:4929
  mountComponentIntoNode                             index.ios.bundle:15386
  perform                                            index.ios.bundle:5992
  batchedMountComponentIntoNode                      index.ios.bundle:15405
  perform                                            index.ios.bundle:5992
  batchedUpdates                                     index.ios.bundle:13507
  batchedUpdates                                     index.ios.bundle:4524
  renderComponent                                    index.ios.bundle:15457
  ReactMount__renderNewRootComponent                 index.ios.bundle:4860
  render                                             index.ios.bundle:1155
  renderApplication                                  index.ios.bundle:33797
  run                                                index.ios.bundle:33743
  runApplication                                     index.ios.bundle:33765
  jsCall                                             index.ios.bundle:7149
  _callFunction                                      index.ios.bundle:7396
  applyWithGuard                                     index.ios.bundle:877
  guardReturn                                        index.ios.bundle:7198
  callFunctionReturnFlushedQueue                     index.ios.bundle:7405
 URL: http://localhost:8081/index.ios.bundle
 line: 955
 message: undefined is not a function (evaluating 'React.createElement(Text, {style: styles.welcome}, 
          "Welcome to React Native!"
        )')"

任何帮助找出为什么会失败的帮助将不胜感激。

谢谢!

4

1 回答 1

4

要在设备上运行(这是您的第二个问题),请查看 React Native 示例中的以下注释:

https://github.com/facebook/react-native/blob/master/Examples/Movies/Movies/AppDelegate.m

要在设备上运行,请更改localhost您电脑的 IP 地址,并确保您的电脑和 iOS 设备在同一个 Wi-Fi 网络上。

我认为这是因为应用程序需要连接到打包程序。看看是否有帮助。

于 2015-03-27T15:27:44.870 回答