gpt4 book ai didi

javascript - 将数据从 JavaScript 文件发送到另一个 JavaScript 文件

转载 作者:行者123 更新时间:2023-11-28 03:51:09 24 4
gpt4 key购买 nike

我想在管理员进入面板时在面板中看到该管理员的信息。但系统上有不止一位管理员。因此,我需要根据登录页面输入的邮件找到登录系统的管理员。当我单击“提交”按钮时,我需要将此邮件从 admin.js 文件发送到landing_page.js 文件。 如何将此数据从一个 JavaScript 文件发送到另一个 JavaScript 文件

我正在使用 MVC。我正在使用 C# 发送和接收数据。我为此使用ajax。并使用“return false”禁用表单的页面刷新功能。

admin.cshtml

$("[name='login_form']").click(function () {
$.post("/Home/AdminLogin", { email: $("#admin_email").val() }, function (data) {
//// send the information of admin to _LayoutPage.cshtml
var fl = data.xfirst_name;
var ln = data.xlast_name;

/*if password is correct*/
if ($("#admin_password").val() == data.passwrd) {
/*go to Users_Panel.cshtml*/
window.location.href = "/home/dashboard";
/**/
}/**/
})
.fail(function (data) {
alert("Server Error");
});
});

我需要将“fl”和“ln”发送到landing-page.js

最佳答案

如果您使用 ASP.NET(因为 .cshtml),请查看本教程:https://www.aspsnippets.com/Articles/Simple-User-Login-Form-example-in-ASPNet.aspx .

基本上,使用这样的登录表单:

<form id="form1" runat="server">
<asp:Login ID = "Login1" runat = "server" OnAuthenticate= "ValidateUser"></asp:Login>
</form>

当用户点击登录时,您可以调用“ValidateUser”方法。这个函数看起来像:

protected void ValidateUser(object sender, EventArgs e)
{
[your logic to get user information goes here]

FormsAuthentication.RedirectToLoginPage(); //Redirect to the page here
}

请提供有关您希望使用的技术的更多信息。

关于javascript - 将数据从 JavaScript 文件发送到另一个 JavaScript 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47987684/

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