标签: asp.net-core-2.0
正常的cshtml文件可以有一个js文件部分,同样适用于ViewComponent吗?如果是这样有任何陷阱?
答案 0 :(得分:1)
ViewComponents有自己的cshtml文件,这些文件呈现为纯HTML,因此您可以像在cshtml文件中一样包含javascript:
cshtml
<script type="text/javascript"> console.log('rendered viewcomponent'); </script>