在 Blazor 中将 js 脚本实现到组件中
Implementing js-script into component in Blazor
能否解释一下如何像这样集成脚本:
<script type="text/javascript" charset="utf-8" async src="https://api-maps.yandex.ru/services/constructor/1.0/js/?um=constructor%3A1d532a41650954ba7f9ebe8975d9ebff1be172d29fb570d1b8c94fb9bfb45c66&width=500&height=720&lang=ru_RU&scroll=true"></script>
我想在 Blazor 的组件中包含此脚本,因为我需要在一页上显示地图
您需要在 Page/_Layout.cshtml 文件中添加此脚本标签 in-order 才能使用此脚本。
能否解释一下如何像这样集成脚本:
<script type="text/javascript" charset="utf-8" async src="https://api-maps.yandex.ru/services/constructor/1.0/js/?um=constructor%3A1d532a41650954ba7f9ebe8975d9ebff1be172d29fb570d1b8c94fb9bfb45c66&width=500&height=720&lang=ru_RU&scroll=true"></script>
我想在 Blazor 的组件中包含此脚本,因为我需要在一页上显示地图
您需要在 Page/_Layout.cshtml 文件中添加此脚本标签 in-order 才能使用此脚本。