0

I would like to know how to solve this issue which Meteor (v0.5.7) with Meteor_angularjs(v1.2.0) generates 'html##html_attributes##' tag within body tag.

If I use Meteor(v0.5.6) with Meteor_angularjs(v1.2.0), this issue doesn't happen. So I think some generating code in Meteor(v0.5.7) has affected Meteor_angularjs.

This case is like this:

<html>
<head>…&lt;/head>
<body>
    <html##html_attributes##>
    <script type="text/javascript" src="/packages/underscore/underscore.js?47479149fe12fc56685a9de90c5a9903390cb451"></script>
    ...
    (generated code by Meteor) 
    ...
    </html##html_attributes##>
</body>
</html>

You can see this issue with todos from Meteor_angularjs (v1.2.0) with Meteor (v0.5.7).

Avoiding this issue, I'm using Meteor (v0.5.6) currently for testing an integration of Meteor and Angular.

4

1 に答える 1

0

これを修正する方法は、隕石で実行することです。Meteor を使用すると、常にこれらの問題が発生します。修正方法は次のとおりです。

  1. 隕石をインストールします。sudo npm install -g meteorite
  2. ディレクトリに CD: cd myproject
  3. 今、流星を実行する代わりに、すべてのために mrt を実行してください! パッケージを追加: パッケージmrt add angularjsを自動的にダウンロードして追加します。
  4. 次に、隕石を使用してプロジェクトを実行します。 mrt

これで問題が解決するはずです。

于 2013-03-12T18:27:31.697 に答える