我有一個開發的gwt應用程序,並在生產中使用。gwt - 飛鏢 - 聚合物集成
我想繼續開發飛鏢,因爲開發/調試 對我來說似乎比用gwt更好。
我已經寫了一些模塊在純粹的飛鏢,我能夠將編譯後的js集成到gwt應用中。 gwt < - > dart通過json之間的通信也可以正常工作。
現在我想集成一些飛鏢/聚合物元素,但沒有取得任何成功。 是否有人這樣做?可能嗎?任何提示?
這是我的gwt主機頁面。我如何獲得聚合物進口/初始化/開始?
<!doctype html>
<html>
<script type="text/javascript" src="app/app.nocache.js"></script>
</head>
<!-- -->
<!-- The body can have arbitrary html, or -->
<!-- you can leave the body empty if you want -->
<!-- to create a completely dynamic UI. -->
<!-- -->
<body>
<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
<!-- RECOMMENDED if your web app will not function without JavaScript enabled -->
<noscript>
<div id="cwm" style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
Your web browser must have JavaScript enabled
in order for this application to display correctly.
</div>
</noscript>
<!-- DART integration-->
<script src="https://maps.googleapis.com/maps/api/js?sensor=false" type="text/javascript"></script>
<script src="dart_application/web/dart_plain.dart" type="application/dart"></script>
<script src="dart_application/web/packages/browser/dart.js" type="text/javascript"></script>
</body>
</html>
你有什麼問題?任何錯誤?告訴我們你的代碼。 – Robert
已經找到解決方案。代替將聚合物包含在gwt中,我使用由聚合物變壓器生成的html文件作爲入口點,並在此頁面中包含gwt javascript int。 – user2884260
然後請發佈您的解決方案並接受您自己的答案。 – Robert