我尝试了几种禁用滚动的方法。
scroll="false"
ionic 3
中是否有scroll-content
之类的ionic3属性?
答案 0 :(得分:1)
根据我的知识,没有这样的方法。
这对我有用。抱歉,这是一个黑客:)
html的
CompletableFuture
.scss
import java.util.concurrent.*;
import java.util.stream.Stream;
public class CompletableFutureTest {
public static void main(String[] args) throws ExecutionException, InterruptedException {
CompletableFuture.supplyAsync(CompletableFutureTest::counting).whenComplete((result, exception) -> {
if (exception != null) {
System.out.println(result);
} else {
}
}).get();
System.out.println("xD");
}
public static int counting() {
Stream.iterate(1, integer -> integer +1).limit(5).forEach(System.out::println);
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
return 10;
}
}