我有一个具有两个本地组件的Vue
实例,这两个组件都具有Vue实例数据中的props
。但是,当我尝试从本地组件之一访问props
值时,这些值ae未定义。
这是代码
var custom_erp_widget = new Vue({
el : '#custom-erp-widgets',
data : {
showContainerHeader : false,
currentModuleName : 'foo',
currentModuleFormID : '5',
currentModuleReportID : '6'
},
components : {
'custom-erp-header' : {
template : '<div class="col-12" id="custom-erp-widget-header">'+
'{{ currentModuleName.toUpperCase() }}'+
'</div>',
props : ['currentModuleName']
},
'custom-erp-body' : {
template : '<div class="col-12" id="custom-erp-widget-body">'+
'</div>',
props : ['currentModuleFormID','currentModuleReportID'],
// for emitting events so that the child components
// like (header/body) can catch and act accordingly
created() {
var _this = this;
eventHub.$on('getFormData', function(e) {
if(e == 'report'){
console.log(_this.$props);
_this.getReportData();
}
else if(e == 'form'){
console.log(_this.$props);
_this.getFormData();
}
});
},
methods : {
// function to get the form data from the server
// for the requested form
getFormData : function(){
var _this = this;
//here the logs are returinig undefined
//but it is having values in the data from the root Instance
console.log(_this.$props.currentModuleFormID);
console.log(_this.currentModuleFormID);
axios
.get('http://localhost:3000/getFormData',{
params: {
formID: _this.currentModuleFormID + 'a'
}
})
.then(function(response){
console.log(response);
})
}
}
}
},
})
这是组件的HTML用法
<div class="row" id="custom-erp-widgets" v-show="showContainerHeader">
<custom-erp-header :current-module-name='currentModuleName'></custom-erp-header>
<custom-erp-body></custom-erp-body>
</div>
如何在本地组件函数中访问props值?
答案 0 :(得分:1)
问题似乎出在您的prop names上,因为Vue希望DOM模板中的道具名称采用烤肉串大小写形式。
HTML属性名称不区分大小写,因此浏览器将解释 任何大写字符作为小写。这意味着当您使用 在DOM模板中,骆驼的道具名称需要使用kebab大小写 (用连字符分隔)。
因此,对于currentModuleFormID
,它期望DOM模板中的current-module-form-i-d
,而不是您期望的current-module-form-id
。尝试将currentModuleFormID
更改为currentModuleFormId
,并以小写的d
结尾,并在模板中使用current-module-form-id
,我想它应该可以工作。
var custom_erp_widget = new Vue({
el : '#custom-erp-widgets',
data : {
showContainerHeader : false,
currentModuleName : 'foo',
currentModuleFormId : '5',
currentModuleReportId : '6'
},
....
<custom-erp-body
:current-module-form-id="currentModuleFormId"
:current-module-report-id ="currentModuleReportId">
</custom-erp-body>
答案 1 :(得分:0)
您必须将道具传递到custom-erp-body
组件:
<custom-erp-body
:currentModuleFormID="currentModuleFormID"
:currentModuleReportID ="currentModuleReportID">
</custom-erp-body>