1

好的,所以我有以下从父组件获得的道具

 props: {
  selectedExchange: {
    default: 'acx',
  }
},

我尝试在以下方法中使用它

 methods: {
  getMarkets() {
    const ccxt = require('ccxt')
    const exchanges = ccxt.exchanges;
    let marketPair = new ccxt[this.selectedExchange]()
    let markets =  marketPair.load_markets()
    return markets
  }
},

预期结果应该是我的项目的一系列市场,但我在控制台中遇到错误

 [Vue warn]: Error in mounted hook: "TypeError: ccxt[this.selectedExchange] is not a constructor"

现在我认为这可能是 ccxt 的问题,但事实并非如此!我试过下面的代码

methods: {
  getMarkets() {
    const ccxt = require('ccxt')
    const exchanges = ccxt.exchanges;
    let acx = 'acx'
    let marketPair = new ccxt[acx]()
    let markets =  marketPair.load_markets()
    return markets
  }
},

如果您没有看到更改,我已经创建了一个内部包含“acx”的变量,与 prop 完全相同,但这次它是在方法内部创建的,并且使用此代码我得到了预期的结果,它一直困扰着我好几天了,我似乎找不到答案,我初始化默认值是否错误?当我查看 vue 开发工具时,我的 prop 的值为array[0],只有在我将值传递给该 prop 后它才会更新,我不应该acx在 devtools 中看到默认值吗?任何帮助深表感谢!

编辑 1:添加了父组件代码

这就是我如何使用父级内部的方法以及我的组件如何相互关联,

<div id="exchange">
  <exchange v-on:returnExchange="updateExchange($event)"></exchange>
</div>
<div id="pair">
  <pair :selectedExchange="this.selectedExchange"></pair>
</div>

这是脚本标签中的代码,我没有包含import标签,因为我认为它没有用

export default {
  name: 'App',
  components: { exchange, pair, trades },
  data(){
    return{
      selectedExchange: ''
    }
   },
   methods: {
     updateExchange(updatedExchange){
       this.selectedExchange = updatedExchange
     }
   },
  };
4

1 回答 1

4

在这种情况下,您将继承默认值:

<pair></pair>

在这种情况下,您将始终继承 selectedExchange 的值,即使它为 null 或未定义:

<pair :selectedExchange="this.selectedExchange"></pair>

因此,在您的情况下,您必须处理父组件的默认值。

这应该有效:

export default {
  name: 'App',
  components: { exchange, pair, trades },
  data(){
    return{
      selectedExchange: 'acx' // default value
    }
   },
   methods: {
     updateExchange(updatedExchange){
       this.selectedExchange = updatedExchange
     }
   },
  };
于 2018-09-03T17:36:24.003 回答