MVC内容backgroundimage: url('')问题

当MVC View内容包含

<div style="background-image:url('');">
</div>


<div class="test">
</div>
<style type="text/css">
    .test
    {
        background-image: url('');
    }
</style>

时,Controller会被请求二次

原文地址:https://www.cnblogs.com/zwei1121/p/2875151.html