作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在这里读到,只有当值不为空时,我才能将key:value
添加到对象
,否则key:value
将根本不存在:
var product = {
coverTitle:document.getElementById("coverTitle").value.length>0 ? getElementById("coverTitle").value : undefined,
..
..
将打印:
coverTitle:undefined
我希望里面根本没有这把 key 。
我在这里读到:In Javascript, how to conditionally add a member to an object?
由 Frédéric Hamidi 回答
上传到服务器时,我根本不想写这对内容,就像它们不存在一样。我做错了什么?
最佳答案
您需要稍后添加该属性 - 未定义
键/值对仍保留在对象中。
let product = {};
const value = document.getElementById("coverTitle").value;
if (value) product.coverTitle = value;
或者,使用 JSON
方法删除 未定义
键/值对 - 成本高昂,但它有效:
var product = {
coverTitle: document.getElementById("coverTitle").value.length > 0 ? document.getElementById("coverTitle").value : undefined
};
product = JSON.parse(JSON.stringify(product));
关于javascript - 仅当不为 null 时才向对象添加值 - 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56721004/
我是一名优秀的程序员,十分优秀!