2015-08-28 75 views
5

我一直在關注如何整合現有的應用程序與反應原生指南。 http://facebook.github.io/react-native/docs/embedded-app-ios.html#content未定義不是一個對象(評估'RCTWebSockerManager.connect') - 反應原生

我根據IOS人員的建議,在IOS方面採取了一些自由度。當我的看法負荷,我得到一個堆棧跟蹤一個紅色的錯誤畫面:

http://puu.sh/jRgDg/b844f139b2.png

(對不起,沒有足夠的信譽發表圖片的文本包含下面。)

2015-08-27 22:19:37.739 [error][tid:com.facebook.React.JavaScript] 'Warning: Native component for "RCTImageView" does not exist' 2015-08-27 22:19:37.851 [info][tid:com.facebook.React.JavaScript] 'Running application "SimpleApp" with appParams: {"rootTag":1,"initialProps":{}}. __DEV__ === true, development-level warning are ON, performance optimizations are OFF' 2015-08-27 22:19:37.856 [error][tid:com.facebook.React.JavaScript] 'Error: undefined is not an object (evaluating \'RCTWebSocketManager.connect\') stack: connectToSocketImpl index.ios.bundle:14464 WebSocketBase index.ios.bundle:14587 WebSocket index.ios.bundle:14458 setupDevtools index.ios.bundle:46060 renderApplication index.ios.bundle:44403 run index.ios.bundle:44295 runApplication index.ios.bundle:44323 __callFunction index.ios.bundle:5552 <unknown> index.ios.bundle:5488 guard index.ios.bundle:5441 <unknown> index.ios.bundle:5488 <unknown> index.ios.bundle:5485 perform index.ios.bundle:7033 batchedUpdates index.ios.bundle:16454 batchedUpdates index.ios.bundle:6336 <unknown> index.ios.bundle:5484 guard index.ios.bundle:5441 processBatch index.ios.bundle:5483 URL: http://192.168.1.70:8081/index.ios.bundle line: 14464 message: undefined is not an object (evaluating \'RCTWebSocketManager.connect\')'

這裏是我的Podfile:

pod 'FBSDKShareKit' 
pod 'FBSDKCoreKit' 
pod 'FBSDKLoginKit' 
pod 'React' 
pod 'React/RCTText' 

(「URL:」被更改爲手動,而不是本地主機,但響應的SAM e。在瀏覽器)

當我運行:

(JS_DIR=`pwd`/ReactComponent; cd Pods/React; npm run start -- --root $JS_DIR) 

一切都正常運行了日誌yeilding:

[22:32:15] <START> fs crawl 
[22:32:16] <END> fs crawl (744ms) 
[22:32:16] <START> Building in-memory fs 
[22:32:16] <END> Building in-memory fs (454ms) 
[22:32:16] <START> Building in-memory fs 
[22:32:17] <END> Building in-memory fs (242ms) 
[22:32:17] <START> Building Haste Map 
[22:32:17] <START> Building (deprecated) Asset Map 
[22:32:17] <END> Building (deprecated) Asset Map (75ms) 
[22:32:17] <END> Building Haste Map (836ms) 

一旦我開始了在Xcode項目IOS模擬器我得到前述的堆棧跟蹤。我可以包含我的客觀c代碼,如果它會有幫助,但我省略了防止混亂,因爲它似乎是反應依賴關係的問題。

謝謝!任何幫助表示讚賞。

+0

同一問題在這裏:/ – gran33

回答

3

所以我想通了。如果你有這個問題,修復我的podfile到這個工作。刪除Pods /目錄,然後使用以下podfile再次運行pod安裝。重新啓動開發者服務器也是很好的措施。

pod 'FBSDKShareKit' pod 'FBSDKCoreKit' pod 'FBSDKLoginKit' pod 'React' pod 'React', :subspecs => [ 'RCTText', 'RCTImage', 'RCTNetwork', 'RCTWebSocket' ]

相關問題