这是我的第一篇文章,祝我好运:)
我想用热毛巾(durandal)+打字稿,我跟着这些线程:-how -can-i-use-a-class-for-my-shell-viewmodel-in-durandal - how-to-use-fancybox- in-combination-with-durandal-en-typescript -不正确的this-in-select
并且还尝试了 DurandalTypescriptExample示例
此示例未运行并出现此错误:
“'/'应用程序中的服务器错误。
无法找到该资源。"
起初我决定只用打字稿改变我的视图模型,然后在那个shell之后,但在这两种情况下我都得到了这个错误:
这是我的 shell.ts 代码(我从这个示例中使用):
/// <reference path="../durandal/durandal.d.ts" />
import _router = module('durandal/plugins/router');
import app = module('durandal/app');
export var router = _router;
export function search() {
app.showMessage('Search not yet implemented...');
}
export function activate() {
return router.activate('welcome');
}
我得到了这个错误:
- JavaScript runtime error: 'exports' is undefined
任何的想法?
如果可能的话,可行的解决方案将受到赞赏。
thanx 伙计们,让我们看看会发生什么。