我是img {
position: relative;
border: 4px solid transparent;
border-radius: 10px;
background: linear-gradient(orange, violet);
background-clip: padding-box;
background: linear-gradient(to bottom, #E2B0C7 0%, #BB96C2 100%);
/* just to show box-shadow still works fine */
box-shadow: 0 3px 9px black, inset 0 0 9px white;
}
img::after{
position: absolute;
top: -4px;
bottom: -4px;
left: -4px;
right: -4px;
background: linear-gradient(to bottom, #E2B0C7 0%, #BB96C2 100%);
content: '';
z-index: -1;
border-radius: 16px;
}
的新手,所以如果答案显而易见,我会提前道歉。在MVC中,如果我想运行一个对返回的数据没有影响的任务(例如分析),async
无效,或者您只需启动一个完全不同的线程。如果我理解正确使用async
void对这种情况没有帮助,因为我们仍然不会返回结果(即使实际操作未标记async
),直到所有任务完成。
是否可以在不强制多线程的情况下使用async
来实现并发?
答案 0 :(得分:3)