我的jQuery非常生锈,但是我从API进行调用,并且响应也很好地出现在console.log中,但是在页面加载时它不会填充def count_words(words):
for index, i in enumerate(words):
wordscount = {i:words.count(i)}
if i not in words[0:index]:
print(wordscount)
标签。我不断收到此错误:
未捕获到的SyntaxError:意外令牌(
我的对象可以很好地进入console.log,因此我以它为jQuery。
enumerate()
答案 0 :(得分:-1)
尝试此操作,您正在输入错误。它是完美的jQuery语法。
$("#timezone").text(response.timezone);
$("#time").text(response.time);
$("#currently").text(response.currently.summary);