节点Javascript需要额外的标识符才能使用

时间:2018-03-12 08:53:41

标签: javascript node.js

嘿我正在尝试使用此资源https://pokeapi.co/docsv2/

中的pokeAPI
let Pokedex = require('pokedex-promise-v2');
let Poke = new Pokedex();

然后使用它而不是能够使用Poke.WhateverFunctionHonestly

我需要使用Poke["pokedex-promise-v2"].WhateverFunctionHonestly

为什么会这样,我如何像Poke.WhateverFunctionHonestly

一样使用它

1 个答案:

答案 0 :(得分:0)

使用可以尝试那样

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="option">
  <div>
    <label for="human">
      <input type="checkbox" value="human" name="human" />
      Human
    </label>
  </div>
  <div>
    <label for="human">
      <input type="checkbox" value="dog" name="dog"/>
      Dog
    </label>
  </div>
  <div>
    <label for="human">
      <input type="checkbox" value="cat" name="cat"/>
      Cat
    </label>
  </div>
</div>