我正在为Web服务器开发一个简单的API,您可以在其中为查询设置答案,并将多个查询绑定到一个答案。
到目前为止,这是我的代码,但是我需要一种将查询(多键)附加到每个问题(值)的方法,而且我不确定如何将其组合在一起。
var currentWeather;
function setup() {
createCanvas(400, 400);
currentWeather = new CurrentWeather();
currentWeather.create();
loadJSON(currentWeather.api, currentWeather.gotData);
}
function draw() {
background(0);
}
///////////////////////////////////////////////////////////////////
class CurrentWeather{
create(){
let url = 'https://api.openweathermap.org/data/2.5/weather?q=';
let city = 'Manassas';
let apiKey ='ApiKeyHere';
let units = '&units=imperial';
this.api = url + city + apiKey + units;
this.weather;
}
gotData(data){
this.weather = data;
}
}
答案 0 :(得分:0)
如何将多个键设置为相同的值:
<?php
$questionkeys = array('hi','hey','yo');
$answervalue = "hello to you too";
$outputarray = array_fill_keys($questionkeys, $answervalue);
echo $outputarray;
?>