現在、次のjson検索方法を書いています。
[HttpPost]
public JsonResult Search(string videoTitle)
{
var auth = new Authentication() { Email = "abc@smu.abc", Password = "abc" };
var videoList = server.Search(auth, videoTitle);
String html = "";
foreach(var item in videoList){
var video = (Video)item;
html += "<b>"+video.Title+"</b>";
}
return Json(html, JsonRequestBehavior.AllowGet);
}
画面では、これを返します。
"\u003cb\u003eAge of Conan\u003c/b\u003e"
私は何をすべきか?これを行う理由は、CSS を使用してタグのスタイルを設定し、アイテムが検索入力からドロップダウンするにつれて見た目が良くなるようにするためです。
ありがとう