gpt4 book ai didi

javascript - 如何修复 :"Refused to run the JavaScript URL because it violates the following Content Security Policy..."

转载 作者:行者123 更新时间:2023-12-04 16:02:21 46 4
gpt4 key购买 nike

有谁知道我为什么一直收到这条消息?
拒绝运行 JavaScript URL,因为它违反了以下内容安全策略指令:“default-src 'self'”。启用内联执行需要“unsafe-inline”关键字、哈希(“sha256-...”)或随机数(“nonce-...”)。另请注意,'script-src' 未明确设置,因此 'default-src' 用作后备。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Title</title>
<script type="text/javascript">
function checkoutForm() {
var inputValue = document.querySelectorAll('.form-control')[0].value;
alert('Your input value: ' + inputValue);
window.open('/search/' + inputValue);
}
</script>
</head>
<body>
<form class="navbar-search navbar-search-dark form-inline mr-3 d-none d-md-flex ml-lg-auto" method="get"
action="javascript:checkoutForm()">
<div class="form-group mb-0">
<div class="input-group input-group-alternative">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fas fa-search"></i></span>
</div>
<input class="form-control" placeholder="Search" type="search" value>
</div>
</div>
</form>
</body>
</html>

最佳答案

表格action属性只能包含一个 URI。
引用 https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#Attributes

您的表格 action属性包含 JavaScript 代码。

从您的代码中,我看到您正在尝试使用 JS 将搜索关键字附加到 URL。
这不是必需的。由于您的表格的 method属性为 get ,在表单提交期间,搜索关键字将自动附加到 URL 中。

设置 action归属于 /search这应该可以解决您的问题

关于javascript - 如何修复 :"Refused to run the JavaScript URL because it violates the following Content Security Policy...",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56092138/

46 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com