为什么在对象中传播undefined会返回一个空对象? Like this:
<div style="overflow-x: auto;'>
<img src='src' style='width: certain_widthpx' />
</div>
OR there is one more way and that is CSS way
<div class="holder">
<img src='src' />
</div>
CSS:
.holder { overflow-x: auto; }
.holder img { width: certain_widthpx; }
In above solution your image will hold that fixed width but the holder will adjust itself as per the view-port and the point where your image's width will be greater than the view-port holder will start showing horizontal scrollbars, but the browser window will not.
:
def pinv(A, b, reltol=1e-6):
# Compute the SVD of the input matrix A
s, u, v = tf.svd(A)
# Invert s, clear entries lower than reltol*s[0].
atol = tf.reduce_max(s) * reltol
s = tf.boolean_mask(s, s > atol)
s_inv = tf.diag(tf.concat([1. / s, tf.zeros([tf.size(b) - tf.size(s)])], 0))
# Compute v * s_inv * u_t * b from the left to avoid forming large intermediate matrices.
return tf.matmul(v, tf.matmul(s_inv, tf.matmul(u, tf.reshape(b, [-1, 1]), transpose_a=True)))
&#13;
为什么在数组中传播undefined会给出错误?
{...undefined} // equals {}
:
console.log({...undefined})
&#13;
答案 0 :(得分:23)
如评论中所述,并由#687的@ftor汇总,对象传播等同于 1 至Object.assign()(问题#687,{{3在数组文字上下文中的扩展是可迭代的扩散。
引用#45,Ecma-262 6.0定义为:
19.1.2.1 Object.assign(target,... sources)
assign 函数用于将所有可枚举的自有属性的值从一个或多个源对象复制到目标对象。调用 assign 函数时,将执行以下步骤:
- 让我成为Object.assign()(目标)。
- ToObject(至)。
- 如果只传递了一个参数,请返回。
- 让source成为以第二个参数开头的ReturnIfAbrupt参数值。
- 对于每个元素nextSource of sources,按升序索引顺序执行
醇>
- 如果nextSource是未定义或 null ,则让密钥为空List。
- 其他,......
...后面是复制自己的属性的描述。对象休息/传播属性草案为List。它不是Ecma-262 6.0的一部分。
数组文字表达式中的here定义为如下开始:
SpreadElement : ... AssignmentExpression
- 让 spreadRef 成为评估 AssignmentExpression 的结果。
- 让 spreadObj 成为SpreadElement( spreadRef )。
- 让迭代器为GetValue( spreadObj )。
- GetIterator(迭代)。
醇>
由于ReturnIfAbrupt没有包含密钥undefined
的属性,因此会根据@@iterator的步骤抛出 TypeError 。标准不是一个简单的阅读,但如果我没有弄错,错误的途径是GetIterator - &gt; GetIterator - &gt; GetMethod - &gt; GetV,它为undefined和null抛出TypeError。
在数组初始化中使用可能未定义的值的变量的一个简单方法是使用默认值:
const maybeArray = undefined;
const newArray = [ ...(maybeArray || []) ];
1 :ToObject存在差异。
答案 1 :(得分:0)
通常,...x
的使用要求x
是可迭代的,因为...
的要点通常是将可迭代对象扁平化。
但是,{...x}
要求x
是可枚举的,因为我们不仅需要值,还需要键和它们。
null
不是可迭代。它没有组件,因此遍历null
没有任何意义。 (for (const item of null)
同样会失败。)
但是,null
是可枚举的。 null
有时被视为对象,这是其中一种情况,并且对象是可枚举的,因为它们可以具有属性。 (for (const prop in null)
同样会成功。)