[Typescript] namespace

2022/8/8 23:24:20

本文主要是介绍[Typescript] namespace,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

`namespace` is manily for the left over from the days where we’d refer to libraries through a single global variable. With this in mind, let’s not give namespace too much more thought for now.

For example:

// using $ as class calling static method
$.ajax({
  url: "/api/getWeather",
  data: {
    zipcode: 97201,
  },
  success: function (result) {
    $("#weather-temp")[0].innerHTML =
      "<strong>" + result + "</strong> degrees"
  },
})
// using $ as function call
$("h1.title").forEach((node) => {
  node.tagName // "h1"
})

 

In order to desribe the types for `ajax`, we use namespace

function $(selector: string): NodeListOf<Element> {
  return document.querySelectorAll(selector)
}
namespace $ {
  export function ajax(arg: {
    url: string
    data: any
    success: (response: any) => void
  }): Promise<any> {
    return Promise.resolve()
  }
}

 



这篇关于[Typescript] namespace的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程