您好,目前我正在使用简单的天气JS ()在我的wordpress主题,以显示实时天气和选项,我正在使用redux框架。我已经为"Name of your City“创建了一个文本字段,我的选项唯一ID是>”cpv-hm cat-op-8“。下面是我的Redux框架选项的预览。
array(
'id' => 'cpv-hm-cat-op-8',
'type' => 'text',
'title' => __( 'Name of your city
我已经创建了一个类调用天气,它从API中获取天气数据(我使用openWeather获取我的天气数据)。此外,我还在另一个文件中创建了一个app.js方法,该方法将天气数据输出到控制台。
但是当我运行这个程序时,它会给我一条错误消息,上面写着控制台中的未定义的,确切地说是在(app.js)中。我正在使用javascript承诺和异步函数。
请帮帮忙!谢谢!
//This is the weather class
class Weather {
constructor (city){
this.apiKey = '59fdf0cfa3f226ec087ef
设想方案1:
我的atom项目中有两个文件,weather.js和exmaple.js,天气使用导出模块将所有东西导出到example.js,而example.js则使用需求模块。
我的weather.js
var request = require('request');
module.exports= function(justAnothercallback)
{
justAnothercallback('This is from weather');
}
myExample.js
var fromWeather = require('./