如何在WordPress上实现哨兵? 时间:2020-07-27 作者:Asaf M 我需要Sentry来跟踪我项目代码中的错误,wordpress的非官方插件似乎毫无用处。我应该如何修复它? 1 个回复 SO网友:Asaf M 对于php,我使用了以下指南:https://cloudpresshosting.co.uk/blog/reporting-wordpress-errors-to-sentry对于JS,我发现我可以获取捆绑包的代码和初始化,并使用;将脚本添加到页眉和页脚;插件。https://wordpress.org/plugins/header-and-footer-scripts我花了很长时间才注意到我无法将初始化放在bundle导入中。有这样的东西:<script src="https://browser.sentry-cdn.com/5.20.1/bundle.min.js" integrity="sha384-O8HdAJg1h8RARFowXd2J/r5fIWuinSBtjhwQoPesfVILeXzGpJxvyY/77OaPPXUo" crossorigin="anonymous"> </script> <script> Sentry.init({ dsn: \'https://unique@unique\' }); </script> 文章导航