こちらのドライバーで動作することを確認しました。
https://pcsupport.lenovo.com/jp/ja/products/laptops-and-netbooks/thinkpad-t-series-laptops/thinkpad-t450s/20bw/downloads/ds103666
2017年10月8日日曜日
2017年10月2日月曜日
ASP.NET Web API で JSON を取得する方法
Web API で JSON を取得する実装例です。
View:
Controller:
View:
<input type="button" id="apiButton" class="btn" value="Web Api Test" /> <script> function asyncCall() { var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function () { if ((xhr.readyState === 4) && (xhr.status === 200)) { var json = xhr.response; console.log(json); } } xhr.open("GET", "/api/values", true); xhr.send(null); } var button1 = document.getElementById("apiButton"); button1.addEventListener("click", asyncCall, false); </script>
Controller:
public class Item { public int Id { get; set; } public string Name { get; set; } public DateTime RegisteredOn { get; set; } public int CategoryId { get; set; } } public class ValuesController : ApiController { // GET api/values public IEnumerable<Item> Get() { List<Item> items = new List<Item>(); items.Add(new Item { Id = 1, Name = "Toshihiko", CategoryId = 1, RegisteredOn = DateTime.Today }); items.Add(new Item { Id = 2, Name = "Takashi", CategoryId = 1, RegisteredOn = DateTime.Today }); return items; } }
登録:
投稿 (Atom)