通过vuejs中的变量动态调用方法

时间:2018-01-16 15:12:15

标签: javascript vue.js vuejs2 components webpack-2

是否可以通过变量调用方法?我有拖放具有ID的元素,根据id我必须调用该方法。 请考虑以下例如。

<template>
   <div>
    <div id="draggable">
      <div class="draggable" id="db">Step2</div>
      <div class="draggable" id="spstep"> Step</div>
      <div class="draggable" id="merge">Merge</div>
      <div class="draggable" id="copy">copy</div>
    </div>
     <div id="id="draggable"">Drop Here</div>
   </div>
 </template> 

<script>
  export default {

  data () {

   }
  mounted () {
  var _this = this
  $(".draggable").draggable({
     grid: [ 20, 20 ],
     appendTo: '#droppable',
     // containment: "window",
     cursor: 'move',
     revertDuration: 100,
     revert: 'invalid',
     helper: 'clone',
     refreshPositions: true,
     scroll: true,
     containment: "document",
      zIndex: 10000,
 });

 $("#droppable").droppable({
     accept: ".draggable",
     tolerance: "intersect",
     drop: function (event, ui) {         
       var leftPosition  = pos.left;//ui.offset.left - $(this).offset().left;
       var topPosition   = pos.top;//ui.offset.top - $(this).offset().top;
       console.log(leftPosition + "  "+ topPosition);
       var type = ui.draggable.attr("id");

       //Here call methods according to id of draggable element
       //like 
       //current implement which is not enhanced code
       if(type == 'db')
          _this.db()

       if(type == 'spstep')
          _this.spstep()

       if(type == 'merge')
          _this.merge()

       if(type == 'copy')
          _this.copy()   
        //desired implementation alike
        _this.[type]() // this syntax is wrong and throws an error  
       }
     }); 
 }
 methods: {
  db(){
    //db called do something
  }
  spstep(){
    //spstep called do something
  }
  merge(){
    //merge called do something
  }
  copy(){
    //copy called do something
  }
}
</script>
<style>
</style>

上面是我的示例代码,其中我在comments中提到了我的要求。我想根据拖动元素调用方法。我不知道即使这是可能的,但通过这种方法,我可以减少许多不需要的代码。

任何帮助都将受到高度赞赏 感谢

2 个答案:

答案 0 :(得分:8)

如果您是这样的对象,请使用Javascript:

const foo = {
    bar() {},
    baz() {}
};

要“动态地”调用它,您应该输入

foo['bar']()
foo['baz']()

所以,在你的情况下,而不是:

this.[type]()

您应该输入:

this[type]()
  

对象可以像数组索引一样进行操作,但在这种情况下,索引是字段

警告:您的$.droppable().drop功能未正确绑定。所以,目前,this不是VueJS组件:

  • 在vuejs组件的基础知识函数/方法中使用es6函数字段(如挂载的......)。
  • 在此功能中,使用箭头功能来锁定this的正确上下文。在此示例中,您的drop函数必须是箭头函数才能正常工作

答案 1 :(得分:0)

您只是认为我以动态方式传递了函数。

我将函数名称作为“ saveRecord”传递。

尝试这种方式。对我来说很好:)

var mydynamic_Function_Name = "saveRecord";
this[mydynamic_Function_Name]();