0

typescript を使用して、非常に単純な Web アプリケーションを作成しています。現時点では、長方形を作成し、その領域の情報トーストを表示するだけです。残念ながら、トーストは表示されません。コード行が実行され、Internet Explorer または Google Chrome の開発ツールにエラーや警告は表示されません。ここに私が持っているものがあります:

タイプスクリプト:

/// <reference path="../typings/toastr/toastr.d.ts" />
interface IRectangle {
   height: number;
   width: number;
   getArea(): number;
}

module Shapes {
   export class Rectangle implements IRectangle {
      getArea(): number {
         return this.height * this.width;
      }

      constructor(
         public height: number,
         public width: number) {

      }
   }
}

var rect: IRectangle = new Shapes.Rectangle(10, 4);
var area = rect.getArea();
toastr.info("area = " + area);

結果の JavaScript は次のようになります。

/// <reference path="../typings/toastr/toastr.d.ts" />
var Shapes;
(function (Shapes) {
    var Rectangle = (function () {
        function Rectangle(height, width) {
            this.height = height;
            this.width = width;
        }
        Rectangle.prototype.getArea = function () {
            return this.height * this.width;
        };
        return Rectangle;
    })();
    Shapes.Rectangle = Rectangle;
})(Shapes || (Shapes = {}));
var rect = new Shapes.Rectangle(10, 4);
var area = rect.getArea();
toastr.info("area = " + area);
//# sourceMappingURL=04-01-internal-module.js.ma

私の HTML は、トーストを表示するためだけに存在します。想像できる限り単純な例ですが、それでも機能しません。

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script src="../scripts/jquery-1.6.3.js"></script>
    <link href="../content/toastr.css" rel="stylesheet" />
    <script src="../scripts/toastr.js"></script>
    <script src="../scripts/app/04-02-internal-module.js"></script>
</head>
<body>

</body>
</html>

私が言ったように。ページは正常に読み込まれますが、何も起こりません。私はここにあるデモを使用したので、私が見るべきものを知っています: http://codeseven.github.io/toastr/demo.html

しかし、何も表示されません。私が間違っていることはありますか?

4

1 に答える 1

2

フィドルを作成しましたが、うまく機能しているようです。私が提案できるのは、ドキュメントの準備ができていないことだけです。そのようにラップしてみてください

$(document).ready(function () {
  toastr.success("message", 'test');
});

働くフィドル

于 2015-09-03T19:14:47.313 に答える