• <bdo id='nJUGP'></bdo><ul id='nJUGP'></ul>
  • <i id='nJUGP'><tr id='nJUGP'><dt id='nJUGP'><q id='nJUGP'><span id='nJUGP'><b id='nJUGP'><form id='nJUGP'><ins id='nJUGP'></ins><ul id='nJUGP'></ul><sub id='nJUGP'></sub></form><legend id='nJUGP'></legend><bdo id='nJUGP'><pre id='nJUGP'><center id='nJUGP'></center></pre></bdo></b><th id='nJUGP'></th></span></q></dt></tr></i><div id='nJUGP'><tfoot id='nJUGP'></tfoot><dl id='nJUGP'><fieldset id='nJUGP'></fieldset></dl></div>
  • <tfoot id='nJUGP'></tfoot>
  • <small id='nJUGP'></small><noframes id='nJUGP'>

      1. <legend id='nJUGP'><style id='nJUGP'><dir id='nJUGP'><q id='nJUGP'></q></dir></style></legend>

        CoffeeScript 中的函数

        时间:2024-04-20

        <tfoot id='elYZj'></tfoot>

        <legend id='elYZj'><style id='elYZj'><dir id='elYZj'><q id='elYZj'></q></dir></style></legend>

            <bdo id='elYZj'></bdo><ul id='elYZj'></ul>

                <small id='elYZj'></small><noframes id='elYZj'>

                    <tbody id='elYZj'></tbody>
                  <i id='elYZj'><tr id='elYZj'><dt id='elYZj'><q id='elYZj'><span id='elYZj'><b id='elYZj'><form id='elYZj'><ins id='elYZj'></ins><ul id='elYZj'></ul><sub id='elYZj'></sub></form><legend id='elYZj'></legend><bdo id='elYZj'><pre id='elYZj'><center id='elYZj'></center></pre></bdo></b><th id='elYZj'></th></span></q></dt></tr></i><div id='elYZj'><tfoot id='elYZj'></tfoot><dl id='elYZj'><fieldset id='elYZj'></fieldset></dl></div>
                1. 本文介绍了CoffeeScript 中的函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试将 function 从 Javascript 转换为 CoffeeScript.这是代码:

                  I'm trying to convert a function from Javascript to CoffeeScript. This is the code:

                  function convert(num1, num2, num3) {
                      return num1 + num2 * num3;
                  }
                  

                  但是我如何在 CoffeeScript 中做到这一点?

                  But how I can do that in CoffeeScript?

                  我正在尝试从这样的 HTML 源运行该函数:

                  I'm trying to run the function from an HTML source like this:

                  <script type="text/javascript" src="../coffee/convert.js"></script>
                  
                  <script type="text/javascript">
                      convert(6, 3, 10);
                  </script>
                  

                  但它不起作用,我收到一条错误消息:ReferenceError: Can't find variable: convert

                  But it won't work and I get an error saying: ReferenceError: Can't find variable: convert

                  如何解决这个问题?

                  推荐答案

                  需要将convert函数导出到全局作用域.
                  请参阅 Coffescript 如何从其他资产访问函数?

                  You need to export the convert function to the global scope.
                  See How can Coffescript access functions from other assets?

                  window.convert = (num1, num2, num3) ->
                    num1 + num2 * num3
                  

                  这篇关于CoffeeScript 中的函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何在 CoffeeScript 中迭代对象中的键和值? 下一篇:与咖啡脚本的多个文件通信

                  相关文章

                2. <i id='EcJTL'><tr id='EcJTL'><dt id='EcJTL'><q id='EcJTL'><span id='EcJTL'><b id='EcJTL'><form id='EcJTL'><ins id='EcJTL'></ins><ul id='EcJTL'></ul><sub id='EcJTL'></sub></form><legend id='EcJTL'></legend><bdo id='EcJTL'><pre id='EcJTL'><center id='EcJTL'></center></pre></bdo></b><th id='EcJTL'></th></span></q></dt></tr></i><div id='EcJTL'><tfoot id='EcJTL'></tfoot><dl id='EcJTL'><fieldset id='EcJTL'></fieldset></dl></div>

                  <small id='EcJTL'></small><noframes id='EcJTL'>

                  <tfoot id='EcJTL'></tfoot>

                      • <bdo id='EcJTL'></bdo><ul id='EcJTL'></ul>
                      <legend id='EcJTL'><style id='EcJTL'><dir id='EcJTL'><q id='EcJTL'></q></dir></style></legend>