在VS2013中,当tsc使用代码1退出时,构建停止。但在VS2012中却不是这样。

如何在忽略tsc.exe错误的情况下运行我的解决方案?

我得到许多属性'x'不存在的值类型'y'错误,我想忽略使用javascript函数时。


当前回答

在Angular2中有一个问题,我正在使用本地存储来保存一些东西,它不允许我这样做。

解决方案:

我有localStorage。city ->错误->属性“city”在“Storage”类型上不存在。

如何解决:

localStorage(城市的) (localStorage) .city (localStorage as any).city

其他回答

在Angular2中有一个问题,我正在使用本地存储来保存一些东西,它不允许我这样做。

解决方案:

我有localStorage。city ->错误->属性“city”在“Storage”类型上不存在。

如何解决:

localStorage(城市的) (localStorage) .city (localStorage as any).city

我能够在typescript中使用类似的东西来解决这个问题:

let x = [ //data inside array ];
let y = new Map<any, any>();
for (var i=0; i<x.length; i++) {
    y.set(x[i], //value for this key here);
}

这似乎是我可以使用X中的值作为映射Y的键并进行编译的唯一方法。

在我的特定项目中,我不能让它工作,并使用声明var $;不是一个干净/推荐的解决方案,它不识别JQuery变量,但我使用后没有错误(必须为我的自动构建成功)。

其他方法都不管用的快速解决方法:

const a.b = 5 // error

const a['b'] = 5 // error if ts-lint rule no-string-literal is enabled

const B = 'b'
const a[B] = 5 // always works

这不是一个好的实践,但提供了一个解决方案,而不需要关闭no-string-literal

我知道这个问题已经关闭了,但我发现它正在搜索相同的TypeScriptException,也许其他人正在搜索这个问题。 问题在于缺少TypeScript类型:

var coordinates = outerElement[0].getBBox();

属性“getBBox”在类型为“HTMLElement”的值上不存在。


The easiest way is to explicitly type variable as `any`
var outerHtmlElement: any = outerElement[0];
var coordinates = outerHtmlElement.getBBox();

编辑,2016年底

从TypeScript 1.6开始,首选的强制转换操作符是as,所以这些行可以压缩成:

let coordinates = (outerElement[0] as any).getBBox();


其他的解决方案

当然,如果你想把它做对,这有时是过度的,你可以:

创建自己的接口,简单地扩展HTMLElement 引入自己的类型,它扩展了HTMLElement