【发布时间】:2018-04-24 14:06:14
【问题描述】:
我是 Web 应用程序开发的新手,我正在尝试创建一个登录页面并使用 javascript 从本地数据库中获取用户数据。但是我很难找到我做错了什么。这是我的javascript代码
$(document).ready(function () {
$("#log-in-form").on("submit", function (e) {
e.preventDefault();
var username = $(this).find("input[type=text]").val();
var password = $(this).find("input[type=password]").val();
Authentication(username, password);
});
function Authentication(username,password){
$.ajax({
type: "GET",
url: "../Web Service/LogIn.asmx/get_uinfos",
data: "{'domain':" + username + "', 'accountpassword':'" + password + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
var result = response.d;
var length = response.length;
$.each(result, function (index, data) {
var alias = data.alias;
window.localStorage.replace("Main.aspx");
});
},
error: function () {
alert('Function Error "get_uinfos"')
}
});
}
});
我正在使用这些代码使用 Web 服务连接到本地服务器
using Wishlist_2017;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Web.Script.Services;
using System.Web.Services;
namespace Wishlist_2017.Web_Service
{
/// <summary>
/// Summary description for LogIn
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class LogIn : System.Web.Services.WebService
{
dbconn dbcon = new dbconn();
public class uinfos
{
public int id;
public string alias;
public string monito;
}
static List<uinfos> _get_uinfos = new List<uinfos> { };
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
[WebMethod]
public List<uinfos> get_uinfos(string domain, string accountpassword)
{
DataTable table = null;
SqlCommand cmd = new SqlCommand();
cmd.CommandText = "Retrieve_UserInfo";
cmd.Parameters.AddWithValue("@Domain", domain);
cmd.Parameters.AddWithValue("@Password", accountpassword);
cmd.CommandType = System.Data.CommandType.StoredProcedure;
table = this.dbcon.ExecuteDataTable(cmd);
_get_uinfos.Clear();
foreach (DataRow row in table.Rows)
{
uinfos _list = new uinfos();
_list.id = Convert.ToInt32(row["id"]);
_list.alias = row["Alias"].ToString();
_list.monito = row["Monito"].ToString();
_get_uinfos.Add(_list);
}
return _get_uinfos;
}
}
}
但在尝试通过填写用户名和密码登录时,我在控制台上遇到此错误
谁能帮忙看一下,不胜感激
编辑 1:
这是服务器类的代码
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Web;
namespace Wishlist_2017
{
public class dbconn
{
string objConn = ConfigurationManager.ConnectionStrings["Server"].ToString();
public dbconn()
{
//
// TODO: Add constructor logic here
//
}
public DataTable ExecuteDataTable(SqlCommand cmd)
{
DataTable dt = new DataTable();
using (SqlConnection cn = new SqlConnection(objConn))
{
try
{
cn.Open();
cmd.Connection = cn;
cmd.CommandTimeout = 1000;
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(dt);
}
catch (Exception ex)
{
throw ex;
}
finally
{
if (cn.State != System.Data.ConnectionState.Closed)
cn.Close();
}
return dt;
}
}
public void ExecuteNonQuery(SqlCommand cmd)
{
using (SqlConnection cn = new SqlConnection(objConn))
{
try
{
cn.Open();
cmd.Connection = cn;
cmd.CommandTimeout = 1000;
cmd.ExecuteNonQuery();
}
catch (Exception ex)
{
throw ex;
}
finally
{
if (cn.State != System.Data.ConnectionState.Closed)
cn.Close();
}
}
}
public object ExecuteScalar(SqlCommand cmd)
{
object result = null;
using (SqlConnection cn = new SqlConnection(objConn))
{
try
{
cn.Open();
cmd.Connection = cn;
cmd.CommandTimeout = 1000;
result = cmd.ExecuteScalar();
}
catch (Exception ex)
{
throw ex;
}
finally
{
if (cn.State != System.Data.ConnectionState.Closed)
cn.Close();
}
}
return result;
}
}
}
连接字符串在我的 web.config 中定义
编辑 2:
这是我的 web.config 上的连接字符串
<connectionStrings>
<add name="Server" connectionString="Data Source=(LocalDB)\ArnServer; initial Catalog=Wishlist; uid=sa; pwd=ordiz@2017!; Asynchronous Processing=true" providerName="System.Data.SqlClient"/>
</connectionStrings>
【问题讨论】:
-
你能包含你的服务器代码的类定义吗?另外,很高兴看到您正在使用 SQL 参数,因为您是 Web 开发新手 :)
-
@James 请查看编辑。你是这个意思吗?谢谢你,但我不能让它工作。
-
您的
LogIn.asmx.cs中有什么内容? -
@PatrickHofman 这是我的网络服务代码所在的位置。这是第二个代码块。
-
显示它的完整代码。
标签: javascript c# ajax web-services