javascript - 从 vue.js 中的子发射传递时值未定义

标签 javascript html vue.js

我不确定为什么会发生这种情况,因为我的两个方法(父和子都被调用)但是实际数据没有被传递,即使我尝试传递一个简单的字符串,当从我的 parent 从发射接收数据:(

有人可以帮助我或者提供解释吗?

我的应用程序在 dom 中像这样呈现(这都是 html 注入(inject)的一部分,而不是 vue-cli)

<div id="app">
    <div>
      <b-button v-b-modal.modal-1>upload files</b-button>

      <b-modal id="modal-1" title="BootstrapVue" ok-title="upload">
          <div>
              <file-uploader v-on:child-to-parent="logChildData()"></file-uploader>
          </div>
      </b-modal>
    </div>
  </div> 

这是我的子组件
//component constructor
var fileUploader = Vue.extend({
  template: ' <div><div id="container" class="flexContainer"><div v-for="img in images" :key="img.name"><div :id=img.name><img height="80px" width="80px" :src=img.src alt="uploaded image"><button @click="removeItem(img.name)">X</button></div></div></div><input type="file" multiple @input="handleUpload($event)"></div>',
  data() {
      return {
        images:[],
        pdfs:[], 
      }
    },

    methods: {

      //send files back up to parent component where they can be manipulated
        sendDatatoParent(){
          console.log('sending data to parent')
          this.$emit('child-to-parent', 'a string to send')
        },


      async handleUpload(e) {

          //check file type and sort into pdfs or images based on their file extension 
          var files = e.target.files
          for(i = 0; i< files.length; i++){

            if(files[i].type === 'application/pdf'){ 
              this.pdfs.push(files[i])

            }else{
              if(files[i].type === 'image/jpeg' || files[i].type === 'image/png' || files[i].type === 'image/gif' || files[i].type === 'image/jpg'){

                //create the thumbnail img and add it to the image object
                //console.log(files[i].name)
                this.buildUrl(files[i])
              }
            }
          }
          //console.log('pdfs',this.pdfs)
          //console.log('images',this.images)

          this.sendDatatoParent()  
        },

    },    
})

// register the file uploader component inside your app so your app has a name to reference the component by
Vue.component('file-uploader', fileUploader)


这是我的 parent ,我应该能够从 $emit 记录数据
// create the main vue app (this contains and renders all your components, it is the parent)
new Vue({
  el: '#app',
  methods:{  

    /*
       listens for the custom $emit event (childToParent) which is passed to your child component (see above ^)
       when fired it will grab the child's data and pass the value here (the parent component)
    */
    logChildData(value){
      console.log('logging the value from emit',value)
    }

  }
})

最佳答案

在父组件的子组件标记中,您正在调用不带参数的父函数,因此该值将不存在。要么通过$event或完全删除括号(推荐)。这样做:

v-on:child-to-parent="logChildData"

或者:
v-on:child-to-parent="logChildData($event)"

关于javascript - 从 vue.js 中的子发射传递时值未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62179763/

相关文章:

javascript - 如何减少 Google Maps Places API v3 InfoWindow 的填充

javascript - 单选按钮在一组中仅选择一个 "YES"和一个 "No"选项

javascript - 永远不会报告带有去抖动的 Vue 组件方法中的错误

javascript - (function() {})() 声明/初始化 javascript 函数

javascript - 在使用 JavaScript 创建文本框后,将焦点从 JavaScript 设置为文本框?

php - 使用 php 和 javascript 时在复选框名称中使用方括号?

JavaScript setTimeout 会导致scrollTop 事件吗?

jquery - 使用 jquery mobile 填充下拉列表

php - 使用 Laravel 为后端刷新 Vue.js SPA 的身份验证 token

javascript - Vue 3 传递数组警告 : Extraneous non-props attributes were passed to component but could not be automatically inherited