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

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

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

        在咖啡脚本中调用函数定义的方法

        时间:2024-04-19

          • <small id='gEtBB'></small><noframes id='gEtBB'>

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

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

                    <tbody id='gEtBB'></tbody>
                  本文介绍了在咖啡脚本中调用函数定义的方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  你会如何将这段 javascript 代码翻译成 coffeescript?具体来说,我正在努力解决如何在函数定义上调用 .property().

                  How would you translate this snippet of javascript to coffeescript? Specifically I'm struggling with how to call .property() on the function definition.

                  MyApp.president = SC.Object.create({
                    firstName: "Barack",
                    lastName: "Obama",
                  
                    fullName: function() {
                      return this.get('firstName') + ' ' + this.get('lastName');
                  
                      // Call this flag to mark the function as a property
                    }.property('firstName', 'lastName')
                  });
                  

                  推荐答案

                  我认为你应该这样写:

                  MyApp.president = SC.Object.create {
                    firstName: "Barack",
                    lastName: "Obama",
                    fullName: (-> 
                      return @get 'firstName' + ' ' + @get 'lastName'
                      # Call this flag to mark the function as a property
                    ).property('firstName', 'lastName')
                  }
                  

                  查看此链接

                  这篇关于在咖啡脚本中调用函数定义的方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:mocha 测试需要外部 js 文件 下一篇:是否可以在 JavaScript 中使用对象文字定义动态命名的属性?

                  相关文章

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

                  1. <tfoot id='jTePt'></tfoot>

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

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