我是打字稿的新手,我想知道如何在打字稿中编写以下代码。我的项目是在asp.net MVC中。 这是我的代码:
$("#EmployeeCode").autocomplete({
source: function (request, response) {
$("#EmployeeCode").val('');
$.ajax({
url: '/Admin/Search/Country/' + request.term,
dataType: "json",
type: "GET",
contentType: "application/json; charset=utf-8",
success: function (data) {
response($.map(data, function (item) {
return {
label: item,
val: item.split('-')[1],
}
}))
},
error: function (response) {
console.log(response.responseText);
},
failure: function (response) {
console.log(response.responseText);
}
});
},
select: function (e, i) {
// $(this).val(i.item.val);
$("#EmployeeCode").val(i.item.val);
},
minLength: 3
});
答案 0 :(得分:1)
Typescript只是javascript的超集,所以javascript是有效的。如果你想直接使用它,你可以。