2013-03-23 30 views
3

我想知道是否有人無法讓Cmd-r啓動他們的應用程序?使用Dart編輯器在Chromium中啓動應用程序

它帶來了鉻,但我必須手動輸入localhost:3030,然後導航到我的實際應用。此外,甚至導航到應用程序,服務器連接最終超時與

java.net.ConnectException: Connection refused

後,我在OS X 10.7.5,飛鏢編輯器版本0.4.2_r20259。謝謝。

2013年4月25日:我想補充什麼不工作的細節,這裏是我的錯誤,當我試圖與德文·卡魯提到的預發佈dartEditor編譯:

--- Mar 25, 2013 11:13:59 AM build.dart --machine --changed=web/quizry3.html --- 
file:/Users/stephen/silly2/quizry-client/build.dart 
build.dart returned error code 255 

Uncaught Error: Class '_File' has no instance method 'open' with matching arguments. 

NoSuchMethodError: incorrect number of arguments passed to method named 'open' 
Receiver: Instance of '[email protected]' 
Tried calling: open(Instance of 'FileMode') 
Found: open(mode) 
Stack Trace: 
#0  Object.noSuchMethod (dart:core-patch:1884:25) 
#1  ConsoleFileSystem.writeString (package:web_ui/src/file_system/console.dart:22:43) 
#2  writeFile (package:web_ui/dwc.dart:104:27) 
#3  emitFiles.<anonymous closure> (package:web_ui/dwc.dart:92:35) 
#4  List.forEach (dart:core-patch:1219:8) 
#5  emitFiles (package:web_ui/dwc.dart:92:18) 
#6  run.<anonymous closure>.<anonymous closure> (package:web_ui/dwc.dart:86:29) 
#7  _ThenFuture._sendValue (dart:async:463:24) 
#8  _FutureImpl._setValue (dart:async:361:26) 
#9  _FutureImpl._chain (dart:async:418:23) 
#10  _FutureImpl._setOrChainValue (dart:async:429:27) 
#11  _ThenFuture._sendValue (dart:async:473:21) 
#12  _FutureImpl._setValue (dart:async:361:26) 
#13  _FutureImpl._setOrChainValue (dart:async:437:16) 
#14  _ThenFuture._sendValue (dart:async:473:21) 
#15  _FutureImpl._setValue (dart:async:361:26) 
#16  _FutureImpl._setOrChainValue (dart:async:437:16) 
#17  _ThenFuture._sendValue (dart:async:473:21) 
#18  _FutureImpl._setValue (dart:async:361:26) 
#19  _CompleterImpl.complete (dart:async:190:21) 
#20  FutureGroup.add.<anonymous closure> (package:web_ui/src/utils.dart:139:28) 
#21  _ThenFuture._sendValue (dart:async:463:24) 
#22  _FutureImpl._setValue (dart:async:361:26) 
#23  _FutureImpl._setOrChainValue (dart:async:437:16) 
#24  _ThenFuture._sendValue (dart:async:473:21) 
#25  _FutureImpl._setValue (dart:async:361:26) 
#26  _CatchErrorFuture._sendValue (dart:async:485:14) 
#27  _FutureImpl._setValue (dart:async:361:26) 
#28  _FutureImpl._setOrChainValue (dart:async:437:16) 
#29  _ThenFuture._sendValue (dart:async:473:21) 
#30  _FutureImpl._setValue (dart:async:361:26) 
#31  _FutureImpl._setOrChainValue (dart:async:437:16) 
#32  _ThenFuture._sendValue (dart:async:473:21) 
#33  _FutureImpl._setValue (dart:async:361:26) 
#34  _FutureListenerWrapper._sendValue (dart:async:221:21) 
#35  _FutureImpl._setValue (dart:async:361:26) 
#36  _FutureListenerWrapper._sendValue (dart:async:221:21) 
#37  _FutureImpl._setValue (dart:async:361:26) 
#38  _FutureImpl._setOrChainValue (dart:async:437:16) 
#39  _ThenFuture._sendValue (dart:async:473:21) 
#40  _FutureImpl._setValue (dart:async:361:26) 
#41  _FutureListenerWrapper._sendValue (dart:async:221:21) 
#42  _FutureImpl._setValue (dart:async:361:26) 
#43  _FutureImpl._setOrChainValue (dart:async:437:16) 
#44  _ThenFuture._sendValue (dart:async:473:21) 
#45  _FutureImpl._setValue (dart:async:361:26) 
#46  _CompleterImpl.complete (dart:async:190:21) 
#47  _SendPortImpl.call.<anonymous closure> (dart:isolate-patch:106:27) 
#48  _ReceivePortImpl._handleMessage (dart:isolate-patch:81:92) 


Unhandled exception: 
Class '_File' has no instance method 'open' with matching arguments. 

NoSuchMethodError: incorrect number of arguments passed to method named 'open' 
Receiver: Instance of '[email protected]' 
Tried calling: open(Instance of 'FileMode') 
Found: open(mode) 
#0  _FutureImpl._scheduleUnhandledError.<anonymous closure> (dart:async:391:9) 
#1  Timer.run.<anonymous closure> (dart:async:2362:21) 
#2  Timer.run.<anonymous closure> (dart:async:2370:13) 
#3  Timer.Timer.<anonymous closure> (dart:async-patch:15:15) 
#4  _Timer._createTimerHandler._handleTimeout (dart:io:6385:28) 
#5  _Timer._createTimerHandler._handleTimeout (dart:io:6393:7) 
#6  _Timer._createTimerHandler.<anonymous closure> (dart:io:6401:23) 
#7  _ReceivePortImpl._handleMessage (dart:isolate-patch:81:92) 

回答

2

本次發行前的版本可以解決連接問題,拒絕爲你:

http://gsdview.appspot.com/dart-editor-archive-trunk/20424/

+0

好了,好消息是,它的工作。它現在正確啓動連接。壞消息是它不再編譯代碼。 :/ 如果我去到以前的dartEditor雖然,然後編譯代碼,然後切換到上述dartEditor,它雖然正常啓動。所以,期待下一個版本。 – 2013-03-25 18:17:16