如何在knock.js中指定绑定上下文,就像在knockout.js和WPF中一样

时间:2017-10-30 13:43:17

标签: javascript binding vue.js binding-context

如果你问我,我们正在使用Vue.js这个非常好的框架。从Knockout.jsWPF我知道可以为绑定指定上下文。如何用Vue.js完成?

请参阅下面的示例。这里binding-context是我在Vue中寻找的功能的伪代码。

Vue.component('hosting-setup', {
template:
    '<wizard>' +
        '<wizard-step binding-context="step1" :title="title">' +
            '<select :options="choices"></select>' +
        '</wizard-step>' +
        '<wizard-step binding-context="step2" :title="title">' +
            '<select :options="choices"></select>' +
        '</wizard-step>' +
    '</wizard>',

    data: function () {
        return {
            step1: {
                title: 'Choose virtualization software',
                choices: ['Virtual Box', 'VMWare'],
                choice: undefined,
            },
            step2: {
                title: 'Choose guest operating system',
                choices: ['Debian 6', 'Ubuntu 16', 'Windows Server 2012'],
                choice: undefined
            }
        };
    }
});

3 个答案:

答案 0 :(得分:1)

没有&#34;有&#34; Vue中的绑定等价物。您想要做的事情有几种方法,但是对于您的示例,我将使用computed将数据作为数组返回,然后使用v-for打印出传递相关数据的每个组件道具:

Vue实例

Vue.component('wizard-step', {
  template: `<div>{{title}}</div>`,
  props: ['title']
});

new Vue({
  el: '#app',
  computed: {
    wizardSteps() {
      return [this.step1, this.Step2]
    }
  },
  data() {
    return {
      step1: {
        title: 'Choose virtualization software',
        choices: ['Virtual Box', 'VMWare'],
        choice: undefined,
      },
      Step2: {
        title: 'Choose guest operating system',
        choices: ['Debian 6', 'Ubuntu 16', 'Windows Server 2012'],
        choice: undefined
      }
    };
  }
})

<强>标记

  <wizard-step :title="step.title" v-for="(step, index) in wizardSteps" :key="index"></wizard-step>

这里是JSFiddle:http://jsfiddle.net/craig_h_411/vzq25go5/

修改

如果要直接将数据传递给组件,可以使用v-bind传递对象,并将要在组件中使用的对象属性名称声明为props,这可能是越来越接近你所要求的,所以:

Vue.component('wizard-step', {
  template: `<div>
    {{title}}
    <select>
      <option v-for="choice in choices" >{{choice}}</option> 
    </select>
  </div>`,
  props: ['title','choices']
});

父母加分

  <wizard-step v-bind="step1"></wizard-step>
  <wizard-step v-bind="Step2"></wizard-step>

这里是JSFiddle:http://jsfiddle.net/craig_h_411/7dg41j0w/

答案 1 :(得分:0)

如果您确实有一个嵌套的孩子,可以尝试使用v-for和1个项目数组作弊。

<template v-for="local in [data.nest1.nest2.nest3]">
    //normal binding using local.XXXX
</template>

答案 2 :(得分:0)

在Vue 2.6.10中测试:

<template>
    <wizard>
        <wizard-step v-if="props.step1 ? step = props.step1 : false" :title="step.title">
            <select :options="step.choices"></select>
        </wizard-step>
        <wizard-step v-if="props.step2 ? step = props.step2 : false" :title="step.title">
            <select :options="step.choices"></select>
        </wizard-step> 
    </wizard>
</template>

注意:甚至更好的是,对于更简洁的代码,您可以创建一个仅用于子组件并传递标题和选项:

<template>
    <wizard>
        <wizard-step v-if="props.step1" :step="props.step1" />
        <wizard-step v-if="props.step2" :step="props.step2" />
    </wizard>
</template>

您的孩子向导步骤将是:

<template>
    <wizard-step :title="step.title">
        <select :options="step.choices"></select>
    </wizard-step>
</template>

另一项改进是,如果您控制返回数据的结构,则可以返回steps的数组(而不是step1和step2),并且可以通过for-each进一步简化:

<template>
    <wizard>
        <wizard-step v-for="step in props.data" :step="step" />
    </wizard>
</template>