• <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 中的函数

        Functions In CoffeeScript(CoffeeScript 中的函数)

        <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 中的函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
                  quot;Each child in an array should have a unique key propquot; only on first time render of page(“数组中的每个孩子都应该有一个唯一的 key prop仅在第一次呈现页面时)
                  Rails 3.1 ajax:success handling(Rails 3.1 ajax:成功处理)
                  CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
                  Ordinals in words javascript(javascript中的序数)
                  getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)
                  • <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>

                          <tbody id='EcJTL'></tbody>

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