0

我是 vuejs 的新手,所以无法找出我做错了什么。这是我的 vue 组件脚本部分:

<script>
    export default {
        name: 'product-main-info',
        components: {
            vueDropzone: vue2Dropzone
        },
        props: {
            propId: String,
        },
        data() {
            return {
                images: {},
                dropzoneOptions: {
                    url: '/uploadImg',
                    thumbnailWidth: 150,
                    maxFilesize: 2.0,
                    addRemoveLinks: true,
                    acceptedFiles: ".png,.jpg,.gif,.bmp,.jpeg",
                    headers: { "X-CSRF-Token": document.head.querySelector('meta[name="csrf-token"]').content },
                    params: { id: this.propId },
                    init: function() {
                        var self = this;
                        self.on("success", function (file) {
                            this.$http.get('/getProductImages/' + this.propId)
                            .then(function(response) {
                                this.images = response.data;
                            });
                        });
                    }
                }
            }
        },
        methods: {

        },
        created() {
            this.$http.get('/getProductImages/' + this.propId)
            .then(function(response) {
                console.log(response.data);
                this.images = response.data;
            });
        }
    }
</script>

成功上传图片后,我正在尝试获取新的刷新数据,但我得到的只是:

app.js:16014 Uncaught TypeError: Cannot read property 'get' of undefined

我所需要的只是刷新我的数据,但我不知道如何以正确的方式做到这一点。如果可能,请提供帮助

4

0 回答 0