在标记中声明淘汰绑定的方式不会发生任何变化,但是一旦为淘汰库编写接口,我们就会获得智能感知优势。在这方面,它就像jquery Sample一样工作,它有一个typescript 文件,其中包含大多数 jQuery api 的接口。
我认为如果您摆脱 ko 和 $ 的两个变量声明,您的代码将起作用。这些隐藏了在敲除和 jquery 脚本加载时创建的实际 ko 和 $ 变量。
我必须这样做才能将 Visual Studio 模板项目移植到淘汰赛:
应用程序.ts:
class GreeterViewModel {
timerToken: number;
utcTime: any;
constructor (ko: any) {
this.utcTime = ko.observable(new Date().toUTCString());
this.start();
}
start() {
this.timerToken = setInterval(() => this.utcTime(new Date().toUTCString()), 500);
}
}
window.onload = () => {
// get a ref to the ko global
var w: any;
w = window;
var myKO: any;
myKO = w.ko;
var el = document.getElementById('content');
myKO.applyBindings(new GreeterViewModel(myKO), el);
};
默认.htm:
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>TypeScript HTML App</title>
<link rel="stylesheet" href="app.css" type="text/css" />
<script src="Scripts/knockout-2.1.0.debug.js" type="text/javascript"></script>
<script src="app.js"></script>
</head>
<body>
<h1>TypeScript HTML App</h1>
<div id="content" data-bind="text: utcTime" />
</body>
</html>