CoffeeScript 使用传递的参数创建包装函数
如何使用 CoffeScript 生成此输出?
(function(doc) {})(document);
How can I generate this output with CoffeScript?
(function(doc) {})(document);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不完全是你所问的,但代码的精神是相同的,而且更咖啡脚本化:
编译为
Not exactly what you have asked, but the spirit of the code is the same and it is more coffeescriptish :
which compiles to
将生成
如果您在将某些内容包装在闭包中的上下文中询问 - 例如 JQuery 插件 - 这将不需要。请参阅此问题
will generate
If you're asking in the context of wrapping something in a closure - for instance a JQuery plugin - this will not be needed. See this question
编译为
compiles to