How can I call method in the component from view? (vue.js 2)我的看法是这样的:[cc lang=javascript] England ...
我的看法是这样的:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <ul class="nav nav-tabs nav-cat"> <li role="presentation" class="active">England </li> <li role="presentation">Spain </li> <li role="presentation">Italy </li> </ul> <top-player-view country_id="1"></top-player-view> |
我的组件顶部播放器视图是这样的:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <template> ... </template> export default{ props:['country_id'], created() { this.$store.dispatch('getTopPlayers', this.country_id) } methods: { getPlayer: function(country_id) { this.$store.dispatch('getTopPlayers', country_id) } } } |
我尝试在顶级播放器视图组件中调用 getPlayer 方法。我从视图中调用该方法。你可以在上面看到我的代码
当我单击选项卡时,我检查控制台是否存在错误:
[Vue warn]: Property or method"getPlayer" is not defined on the
instance but referenced during render. Make sure to declare reactive
data properties in the data option. (found in root instance)Uncaught TypeError: getPlayer is not a function
我该如何解决呢?
你需要实际调用元素上的方法。
一种解决方案:
将
本文标题为:关于javascript:如何从视图中调用组件中的方法?
- JS实现左侧菜单工具栏 2022-08-31
- ajax实现输入提示效果 2023-02-14
- 深入浅析AjaxFileUpload实现单个文件的 Ajax 文件上传库 2022-12-15
- jsPlumb+vue创建字段映射关系 2023-10-08
- vue keep-alive 2023-10-08
- 1 Vue - 简介 2023-10-08
- 基于CORS实现WebApi Ajax 跨域请求解决方法 2023-02-14
- javascript 判断当前浏览器版本并判断ie版本 2023-08-08
- layui数据表格以及传数据方式 2022-12-13
- 关于 html:如何从 css 表中删除边距和填充 2022-09-21