2014-07-12 2 views
2

다트 도트 샘플 응용 프로그램을 통해 작업 중입니다. 나는 어떤 코드도 변경하지 않았지만 에디터에서 많은 squiggles를 본다.다트 도우 응용 프로그램

<polymer-element name="simple-router"> 
     <script type="application/dart;component=1" 
     src="simple_router.dart"></script> 
    </polymer-element> 

제가 보는 오류가 읽습니다.

잘못된 스크립트 유형입니다 (예 : type = "application/dart").

나는 이것이 무엇을 의미하는지 이해하지 못합니다. 내가 분해 할 때; component = 1. 정말 응용 프로그램을 깰.

답변

1

이 코드는 Polymer에서 유효한 코드로 ">= 0.10.5 <0.11.0"인데 몇 가지 변경 사항이 있습니다.

;component=1 모든 스크립트 태그에서 제거해야합니다. 사용자 정의 main 메소드를 구현하는 방법을 여기에서 볼

<html> 
    <head> 
    <title>core-ajax-dart</title> 

    <!-- when the project uses polymer --> 
    <!-- <script src="packages/web_components/platform.js"></script> 
     not necessary anymore with Polymer >= 0.14.0 --> 
    <script src="packages/web_components/dart_support.js"></script> 

    <!-- import individual polymer elements --> 
    <link rel='import' href='packages/core_elements/core_ajax_dart.html'> 
    </head> 
    <body> 
    <core-ajax-dart 
     url="http://gdata.youtube.com/feeds/api/videos/" 
     params='{"alt":"json", "q":"chrome"}' 
     handleAs="json" 
     auto></core-ajax-dart> 

    <!-- if you have a custom script file that contains a main() method --> 
    <script type="application/dart" src="core_ajax_dart.dart"></script> 

    <!-- else if you don't have a custom script file with a main() method 
    <script type="application/dart">export 'package:polymer/init.dart';</script> 
    </body> 
</html> 

처럼

항목 페이지의 수입 및 스크립트 태그를 보일 것입니다. how to implement a main function in polymer apps