我需要用 app.config 中的值填充变量。有没有办法在 Javascript 中做到这一点?这就是我现在所拥有的,但是我不相信它在任何方面都是正确的..
var notConfident = ConfigurationManager.AppSettings["GoogleValue"];
我需要用 app.config 中的值填充变量。有没有办法在 Javascript 中做到这一点?这就是我现在所拥有的,但是我不相信它在任何方面都是正确的..
var notConfident = ConfigurationManager.AppSettings["GoogleValue"];
不,javascript 在客户端浏览器中运行,应用程序配置是服务器中的文件。
您可以通过将其发送到客户端来获取该值,例如:
.aspx 文件:
<input type="hidden" id="ikey" runat="server" />
.cs文件,页面加载方式:
ikey.InnerText = ConfigurationManager.AppSettings["GoogleValue"];
.js 文件,onload 方法:
var something = document.getElementById("ikey").value;