- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我提交了一个表单以从数据库中获取对象。
我需要在 json 字符串中添加 varbinary(MAX) 类型(图像)列,并通过 WebMethod 将其发送到 Ajax 以显示在页面中,以及对象的其余属性。所以在类中它的string类型而不是byte[]类型。
在编码部分我收到 Javascript 运行时错误:
Unable to get property 'pingInterval' of undefiened null reference.
<form id="form1" runat="server">
Arrival:
<input type="text" id="txtArrival" />
departure:
<input type="text" id="txtDeparture" />
Nob:
<input type="text" id="txtNob" />
<input type="button" id="btnSubmit" value="Get Rooms" />
</form>
public int ID { get; set; }
public string RoomType { get; set; }
public string RoomNumber { get; set; }
public string RoomTitle { get; set; }
public decimal Price { get; set; }
public string ServiceName { get; set; }
public string Photo { get; set; }
$(document).ready(function () {
$(function () {
$("#btnSubmit").click(function () {
var arrival = $("#txtArrival").val();
var departure = $("#txtDeparture").val();
var nob = $("#txtNob").val();
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "WebForm2.aspx/GetRooms",
data: "{'arrival':'" + arrival + "','departure':'" + departure + "','nob':'" + nob + "'}",
dataType: "json",
success: function (data) {
alert(data.d);
},
error: function (result) {
alert("Error!");
}
});
});
});
});
[WebMethod]
public static string GetRooms(string arrival, string departure, string nob)
{
string val = "";
DateTime d1 = Convert.ToDateTime(arrival);
DateTime d2 = Convert.ToDateTime(departure);
int noib=Convert.ToInt32(nob);
var jSerialize = new JavaScriptSerializer();
List<Room> lst = new List<Room>();
using (SqlConnection con = new SqlConnection("Server=.;Database=ResDB;Trusted_Connection=True;"))
{
using (SqlCommand cmd = new SqlCommand("roomsAvailable", con))
{
cmd.Parameters.AddWithValue("@arr", d1);
cmd.Parameters.AddWithValue("@dep", d2);
cmd.Parameters.AddWithValue("@nob", noib);
cmd.CommandType = CommandType.StoredProcedure;
con.Open();
SqlDataReader sr = cmd.ExecuteReader(); ;
while (sr.Read())
{
Room r = new Room();
r.ID = Convert.ToInt32(sr["ID"]);
//objects..
if (sr["Photo"] != System.DBNull.Value)
{
byte[] p = (byte[])sr["Photo"];
r.Photo = Convert.ToBase64String(p);// error here
}
lst.Add(r);
val = jSerialize.Serialize(lst);
}
con.Close();
}
}
return val;
}
WebMethod 中的此语句有错误:
r.Photo = Convert.ToBase64String(p);
最佳答案
将 JQuery 托管文件更改为新版本后,
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
错误消失了!
关于javascript - 无法获取未定义空引用的属性 'pingInterval',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35195626/
我提交了一个表单以从数据库中获取对象。 我需要在 json 字符串中添加 varbinary(MAX) 类型(图像)列,并通过 WebMethod 将其发送到 Ajax 以显示在页面中,以及对象的其余
我一直在使用网络套接字进行测试,并想使用 pingInterval 来确定客户端是否已关闭,但我一直无法检测到。我每 4 秒通过 websocket 发送一条消息。我想,当我退出浏览器时,不会产生任何
我有一个使用 socket.io 连接到 node.js 服务器的应用程序。由于网络状况不佳,我遇到了一些用户断开连接的问题。由于这个问题,我想向客户端显示服务器上当前的延迟,以便客户端知道他们是否有
如果我设置 pingTimeout: 3000 和 pingInterval: 2000 ;如果同时有 800 个套接字连接;这会对服务器性能产生任何问题或提供延迟吗?当 socket.io 文档说服
我是一名优秀的程序员,十分优秀!