我尝试将Kendo UI自动完成工具与C#数据源一起使用。 在PHP中似乎很容易:
<?php
include("connection.php");
$arr = array();
$stmt = $db->prepare("SELECT StateID, StateName FROM USStates WHERE StateName LIKE ?");
// get the StartsWith value and append a % wildcard on the end
if ($stmt->execute(array($_GET["StartsWith"]. "%"))) {
while ($row = $stmt->fetch()) {
$arr[] = $row;
}
}
// add the header line to specify that the content type is JSON
header("Content-type: application/json");
echo "{\"data\":" .json_encode($arr). "}";
?>
但我想使用CSHtml文件或类似的东西,你对如何实现这个有任何想法吗?
我不想创建一个附有模型等的控制器......如果只能用一个页面制作它,那就太棒了。
答案 0 :(得分:2)
如果您正在使用MVC创建一个像这样的控制器......
public class DataController : Controller
{
public JsonResult GetStates()
{
var data = GetData();
return Json(new
{
data = data.Select(r => new
{
StateId = r.ID,
StateName = r.Name
})
});
}
}
然后,您所要做的就是将数据源URL设置为/ data / GetStates
如果您使用的是webforms,我会创建一个通用处理程序或Web服务(取决于您需要多少个函数)
public class LoadStates : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
JavaScriptSerializer json = new JavaScriptSerializer();
var data = GetData();
context.Response.ContentType = "application/json";
context.Response.Write(json.Serialize(new
{
data = data.Select(r => new
{
StateId = r.ID,
StateName = r.Name
})
}));
}
public bool IsReusable
{
get
{
return false;
}
}
}
为了完整起见..以下是使用ashx webservice
的方法[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
public class WebService1 : System.Web.Services.WebService
{
[WebMethod, ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string HelloWorld()
{
var data = GetData();
return new
{
data = data.Select(r => new
{
StateId = r.ID,
StateName = r.Name
})
};
}
}