搜索完成。档案中没有这样的东西。我搞砸了以前工作过的网站。我不知道怎么做。具体来说,将我的iPhone 6从纵向旋转到横向显示我的网站缩小到约50%。重新加载会弹出正常的演示文稿。旋转回肖像,然后返回横向,需要再次重新加载。从来没有一个问题,所有视口工作,但旋转后所需的屁股踢。网站是CodeStruggle dot com。我将中小背景设置为棕褐色和粉红色以便进行故障排除。谢谢你的帮助。
答案 0 :(得分:0)
发现问题。出于某种原因,我的水平规则不起作用。所以我替换了下面的生物,直到我可以调查 /**
* @note due to complications in the internal implementation, this method will raise an
* exception if called on an RDD of `Nothing` or `Null`. This may be come up in practice
* because, for example, the type of `parallelize(Seq())` is `RDD[Nothing]`.
* (`parallelize(Seq())` should be avoided anyway in favor of `parallelize(Seq[T]())`.)
* @return true if and only if the RDD contains no elements at all. Note that an RDD
* may be empty even when it has at least 1 partition.
*/
def isEmpty(): Boolean = withScope {
partitions.length == 0 || take(1).length == 0
}
问题。一切都在桌面上完美表现,但不在我的手机上。生活和学习。
<hr>