【问题标题】:I've created a modal component in Vue.js that doesn't work我在 Vue.js 中创建了一个不起作用的模态组件
【发布时间】:2017-08-11 17:45:46
【问题描述】:

我在 Vue JS 中创建了一个模态组件。它必须显示在表单中输入的所有名称。它不起作用。我能做些什么来解决这个问题?我是 Vue JS 的新手。我也不能使用速记。你知道为什么吗?请帮我。先感谢您。 这是我的代码:

<template>
  <div class="template_class">
  <div>
  <b-btn v-b-modal.modal1>Launch demo modal</b-btn>

  <!-- Main UI -->
  <div class="mt-3 mb-3">
    Submitted Names:
    <ul>
      <li v-for="n in names">{{n}}</li>
    </ul>
  </div>

  <!-- Modal Component -->
  <b-modal id="modal1" title="Submit your name" @ok="submit" @shown="clearName">

    <form @submit.stop.prevent="submit">
      <b-form-input type="text" placeholder="Enter your name" v-model="name"></b-form-input>
    </form>

  </b-modal>
</div>  
  </div>
</template>

<script>

export default {
  data: {
    name: '',
    names: []
  },
  methods: {
    clearName() {
        this.name = '';
      },
      submit(e) {
        if (!this.name) {
          alert('Please enter your name');
          return e.cancel();
        }

        this.names.push(this.name);
        this.name = '';
      }
  }
}

</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>

</style>

【问题讨论】:

  • 请比“不起作用”更清楚地说明您希望它做什么而它没有做什么。提及您正在使用Bootstrap Vue 也很有帮助。
  • 它必须显示在表单上输入的所有名称。但事实并非如此。

标签: javascript vue.js


【解决方案1】:

这对我来说按预期工作。 编辑我从模式中删除了 @shown 绑定,因为它似乎引入了一些错误。

new Vue({
  el: '#app',
  data: {
    name: 'Pigman',
    names: []
  },
  methods: {
    clearName() {
      this.name = "";
    },
    submit(e) {
      if (!this.name) {
        alert('Please enter your name');
        return e.cancel();
      }

      this.names.push(this.name);
      this.clearName();
    }
  }
});
<script src="//cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.min.js"></script>
<!-- Add this to <head> -->
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap@next/dist/css/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.css" />

<!-- Add this after vue.js -->
<script src="//unpkg.com/babel-polyfill@latest/dist/polyfill.min.js"></script>
<script src="//unpkg.com/tether@latest/dist/js/tether.min.js"></script>
<script src="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.js"></script>

<div id="app" class="template_class">
  <div>
    <b-btn v-b-modal.modal1>Launch demo modal</b-btn>
    Current name: {{name}}

    <!-- Main UI -->
    <div class="mt-3 mb-3">
      Submitted Names:
      <ul>
        <li v-for="n in names">{{n}}</li>
      </ul>
    </div>

    <!-- Modal Component -->
    <b-modal id="modal1" title="Submit your name" @ok="submit">

      <form @submit.stop.prevent="submit">
        <b-form-input type="text" placeholder="Enter your name" v-model="name"></b-form-input>
      </form>

    </b-modal>
  </div>
</div>

【讨论】:

  • 对我来说,它不显示提交的名称。你能帮助我吗?请。 :(
  • 我打开了控制台,这就是我得到的:[Vue 警告]:属性或方法“名称”未在实例上定义,但在渲染期间被引用。确保在 data 选项中声明响应式数据属性。
  • 您使用的是什么操作系统和浏览器?
  • Ubuntu 16.04 和谷歌浏览器。
  • 有趣:在 Safari (Mac) 上,尽管变量 name 被重置,但模式会显示为名称输入的 lat 值。我认为 Bootstrap-Vue 中存在错误。
【解决方案2】:

你的代码对我来说没有任何意义,这是来自 vue 主页https://vuejs.org/v2/examples/modal.html 的一个很好的可重用示例

此代码直接从示例中复制而来,我仅将其作为单个文件组件引用:

<template>
  <transition name="modal">
    <div class="modal-mask">
      <div class="modal-wrapper">
        <div class="modal-container">

          <div class="modal-header">
            <slot name="header">
              default header
            </slot>
          </div>

          <div class="modal-body">
            <slot name="body">
              default body
            </slot>
          </div>

          <div class="modal-footer">
            <slot name="footer">
              default footer
              <button class="modal-default-button" @click="$emit('close')">
                OK
              </button>
            </slot>
          </div>
        </div>
      </div>
    </div>
  </transition>
</template>

<script>
export default{
  name: 'modal'
}
</script>

<style>
.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  display: table;
  transition: opacity .3s ease;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.modal-container {
  width: 300px;
  margin: 0px auto;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
  transition: all .3s ease;
  font-family: Helvetica, Arial, sans-serif;
}

.modal-header h3 {
  margin-top: 0;
  color: #42b983;
}

.modal-body {
  margin: 20px 0;
}

.modal-default-button {
  float: right;
}

/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.modal-enter {
  opacity: 0;
}

.modal-leave-active {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
</style>

【讨论】:

猜你喜欢
  • 2020-04-09
  • 1970-01-01
  • 2015-10-18
  • 2023-03-20
  • 2020-10-09
  • 1970-01-01
  • 2020-12-14
  • 2019-04-27
  • 1970-01-01
相关资源
最近更新 更多