gpt4 book ai didi

javascript - Typescript - 自执行匿名函数

转载 作者:数据小太阳 更新时间:2023-10-29 04:54:33 26 4
gpt4 key购买 nike

如何使用类型脚本创建自执行的匿名函数?

例如

(function() {
var someClass = {
}
}.call(this));

我想要一个内置的插件,它可能适用于 Node.js,也适用于前端。

最佳答案

/**
* Self executing anonymous function using TS.
*/
(()=> {
// Whatever is here will be executed as soon as the script is loaded.
console.log('executed')
})();

I want a built a plugin that may work for Node.js, also for fron-tend as well.

在这种情况下,您应该在 AMD 中编译您的 TypeScript,并在前端使用 AMD 加载器,例如 http://requirejs.org/docs/start.html

在服务器端,您还需要使用 requirejs 节点包来加载文件。看看这个:http://requirejs.org/docs/node.html

基本上有两种方法可以将 TS 编译为 JS,使用兼容浏览器的 AMD 或使用兼容 node.js 的 CommonJS。在浏览器或服务器中加载 AMD 脚本需要使用符合 AMD 规范的加载器,*requirejs** 就是其中之一。 (我会说最著名/最常用的)

关于javascript - Typescript - 自执行匿名函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30274464/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com