我正在使用ASP.Net MVC,我尝试将img附加到ajax中以在Html中添加div但是没有添加我确定路径是正确的,除了img之外的所有内容都正确添加。
if (newParent.children.filter(c => c.id === child.id).length === 0) {
val newChild = {
id: child.id,
name: child.name,
val: []
};
newParent.children.push(newChild);
}