面试题答案
一键面试interface Context {
name: string;
}
function fetchData(callback: (this: Context) => void) {
// 模拟数据获取成功
const context: Context = { name: 'example' };
callback.call(context);
}
fetchData(function (this: Context) {
console.log(this.name);
});