我正在使用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
但是,没有任何表现。我有什么想法吗?
答案 0 :(得分:1)
我创造了一个小提琴,它似乎工作得很好,只有我可以建议的是你的文件没有准备好,所以尝试包装如此
$(document).ready(function () {
toastr.success("message", 'test');
});
<强> Working Fiddle 强>