我收到以下 TypeScript 代码错误:
///<reference path='../../../Shared/typescript/jquery.d.ts' />
///<reference path='../../../Shared/typescript/jqueryStatic.d.ts' />
function accessControls(action: Action) {
$('#logoutLink')
.click(function () {
var $link = $(this);
window.location = $link.attr('data-href');
});
}
我收到以下带下划线的红色错误:
$link.attr('data-href');
消息说:
Cannot convert 'string' to 'Location': Type 'String' is missing property 'reload' from type 'Location'
有谁知道这意味着什么?
原文由 user1679941 发布,翻译遵循 CC BY-SA 4.0 许可协议
window.location
is of typeLocation
while.attr('data-href')
returns a string, so you have to assign it towindow.location.href
which is of string type too.为此替换您的以下行:对于这个: