ready only error and const in es6 错误
Ready only error and const in es6 mistake
我正在尝试 运行。
在这个脚本中收到只读错误
我正在尝试学习 const 和新的 es6,我不得不承认它非常简单,但在这种情况下,我不能 100% 确定这就是问题所在。
这是我的代码:
$(() => {
const containerImage = document.querySelector( '.images' );
const getPictures = () => {
$.ajax({url: "https:myurl/photos.json", success: function(result) {
const singleImage = result.photos;
const content = "";
content += "<div class='row'>";
for(let i = 0; i < singleImage.length; i++){
content.innerHTML += `<div class="col-md-4">
<img src=${singleImage[i].image}>
</div>`;
};
content += "</div>";
containerImage.innerHTML = content;
}});
}
getPictures();
});
有人注意到我的代码有什么奇怪的地方吗?
加上控制台提示并抛出这个错误:
function _readOnlyError(name) { throw new Error("\"" + name + "\" is read-only"); }
但我连严格模式都没有。
无法修改常量。变化:
const content = "";
content += "<div class='row'>";
至
let content = "";
content += "<div class='row'>";
我正在尝试 运行。
在这个脚本中收到只读错误我正在尝试学习 const 和新的 es6,我不得不承认它非常简单,但在这种情况下,我不能 100% 确定这就是问题所在。
这是我的代码:
$(() => {
const containerImage = document.querySelector( '.images' );
const getPictures = () => {
$.ajax({url: "https:myurl/photos.json", success: function(result) {
const singleImage = result.photos;
const content = "";
content += "<div class='row'>";
for(let i = 0; i < singleImage.length; i++){
content.innerHTML += `<div class="col-md-4">
<img src=${singleImage[i].image}>
</div>`;
};
content += "</div>";
containerImage.innerHTML = content;
}});
}
getPictures();
});
有人注意到我的代码有什么奇怪的地方吗?
加上控制台提示并抛出这个错误:
function _readOnlyError(name) { throw new Error("\"" + name + "\" is read-only"); }
但我连严格模式都没有。
无法修改常量。变化:
const content = "";
content += "<div class='row'>";
至
let content = "";
content += "<div class='row'>";