Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望仅当尚未在父视图中声明此类调用时才呈现以下调用。
@Scripts.Render("~/Scripts/jQuery")
最好的方法是什么?
这是一种方法:
<script> if (!window.jQuery) { document.write('<script src="@BundleTable.Bundles.ResolveBundleUrl("~/Scripts/jQuery")">\x3C/script>'); } </script>
这与从 CDN 中包含 jQuery 时使用的逻辑基本相同,然后在 CDN 交付失败时具有本地引用回退。