iT邦幫忙

2021 iThome 鐵人賽

DAY 2
1
自我挑戰組

.NET Core WebApi網頁應用開發系列 第 14

.Net Core Web Api_筆記14_api結合ADO.NET資料庫操作part2_資料查詢呈現

  • 分享至 

  • xImage
  •  

在上一篇辛辛苦苦地完成了專案前置準備
並寫好新增功能的api呼叫(透過POST方式)
現在資料庫中有存入一些剛存進來的內容
我想把他們查詢呈現在畫面上
此時改用GET方式

藉由ado.net查詢回來存入List泛型
https://ithelp.ithome.com.tw/upload/images/20210930/201074522VN4ZgAmT1.png

傳入自定義的model class
也就是每一筆都為NewsType.cs 這個DTO class

在NewsTypeController新增
一個Action Method命名為ShowNewsType

[HttpGet("Show")]
public ActionResult<List<NewsType>> ShowNewsType()
{
    string strSQL = @"select * from NewsType";
    Hashtable htParms = new Hashtable();
    SqlDataReader dataReader = MSSQLHelper.GetSqlDataReader(strSQL);
    if (!dataReader.HasRows)
        return NotFound();

    List<NewsType> lsNewsType = new List<NewsType>();

    while (dataReader.Read())
    {
        lsNewsType.Add(new NewsType()
        {
            NewsTypeId = dataReader.GetInt32(0),
            NewsTypeName = dataReader.GetString(1),
            isEnabled = dataReader.GetBoolean(2)
        });
    }
    dataReader.Close();
    return lsNewsType;
}

在瀏覽器或PostMan上測試也可正常查出目標資料
這裡有特別一點就是回傳回來原先屬性開頭大寫的變小寫
以postman回傳的為主

https://ithelp.ithome.com.tw/upload/images/20210930/20107452fsB3rroO56.png

一樣新增一個畫面專for資料呈現的
Show.html

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>Show NewsType</title>
    <link href="../css/bootstrap.min.css" rel="stylesheet" />
    <script src="../js/jquery/jquery.min.js"></script>
</head>
<body style="margin:20px;">
    <table id="tbNewsType" class="table table-bordered">
        <thead>
            <tr>
                <td>文章ID</td>
                <td>分類</td>
                <td>是否啟用</td>
            </tr>
        </thead>
        <tbody>
        </tbody>
    </table>

    <script type="text/javascript">
        $(function () {
            var tbody = $('#tbNewsType tbody')
            $.ajax({
                type: 'get',
                url: '/api/NewsType/Show',
                dataType: 'json',
                success: function (result) {
                    $.each(result, function (n, value) {
                        var IsEnabled;
                        value.isEnabled ? IsEnabled = '啟用' : IsEnabled = '關閉';
                        var tr_val = "";
                        tr_val += "<tr><td>" + value.newsTypeId + "</td><td>" + value.newsTypeName + "</td><td>" + IsEnabled + "</td></tr>";
                        tbody += tr_val;
                    });
                    $('#tbNewsType').append(tbody);
                }
            });
        });
    </script>
</body>
</html>

https://ithelp.ithome.com.tw/upload/images/20210930/20107452S97QcMYwg1.png

本篇已同步發表至個人部落格
https://coolmandiary.blogspot.com/2021/09/net-core-web-api14apiadonetpart2.html


上一篇
.Net Core Web Api_筆記13_api結合ADO.NET資料庫操作part1_專案前置準備到資料新增
下一篇
.Net Core Web Api_筆記15_api結合ADO.NET資料庫操作part3_資料刪除
系列文
.NET Core WebApi網頁應用開發25
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言