我有一个函数,我试图将json文件的一些内容放入元素中。我从后端的函数接收此数组。我的函数打印出相同数量的对象,但不会打印出我尝试抓取的特定项目。控制台日志打印出阵列刚刚好,所以我知道该部分正在工作。
JSON 数组示例
[
{ "Type":"Ford", "Model":"mustang" },
{ "Type":"Dodge", "Model":"ram" }
]
断续器
<p id="special"></p>
断续器
myMethod: function () {
var res = this;
fetch('/cont/function', {
method: 'POST',
headers: { 'Content-Type': 'application/json' }
})
.then(function (response) {
return response.json();
})
.then(function (data) {
res.type = data.Type;
console.log(data);
var html = '';
data.forEach(function (these) {
html += { these: res.type };
});
document.getElementById('special').innerHTML = html;
});
}
慕尼黑的夜晚无繁华
慕雪6442864
相关分类