如何从SQL数据库填充选择列表

本文关键字:填充 选择 列表 数据库 SQL | 更新日期: 2023-09-27 18:18:17

我实际上是一个完全的初学者,所以我提前为听起来愚蠢道歉。我试图在Visual Studio中制作一个简单的web应用程序,我需要创建一个选择(下拉)列表,其中的选项从数据库(SQL Server)填充。我已经给了数据库,所以我不需要建立它,我没有任何灵活性的设计或任何东西。我也试图采用MVC设置。

我知道以前可能有人问过这个问题,但是我遇到的所有答案都只是为所问的每个特定情况提供了正确的代码。我真的很想了解它是如何工作的,以及最简单、最简洁的方法。

我的Web中有连接语句。配置文件:

<connectionStrings>
<add name="ScrumTimerEntities" connectionString="metadata=res://*/Model.ScrumTimerEntities.csdl|res://*/Model.ScrumTimerEntities.ssdl|res://*/Model.ScrumTimerEntities.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=***;initial catalog=ScrumTimer;persist security info=True;user id=***;password=***;MultipleActiveResultSets=True;App=EntityFramework&quot;"
  providerName="System.Data.EntityClient" />
<add name="ScrumTimerConnectionString" connectionString="Data Source=stem.arvixe.com;Initial Catalog=ScrumTimer;Persist Security Info=True;User ID=scrumtimer-admin;Password=test1234;MultipleActiveResultSets=True;Application Name=EntityFramework"
  providerName="System.Data.SqlClient" />

我正在使用Visual Studio 2015和c#

编辑:添加代码。我没有把这个放在第一位,因为它与我要做的事情没有任何关系,因为我不知道从哪里开始,但我想我知道的不够多,也不知道它不重要!您可以看到,我正在尝试创建一个计时器,当计时器达到零时向服务器发送消息。我需要下拉列表包含来自数据库的用户列表。

视图——

@{
    ViewBag.Title = "Home Page";
}
@section scripts
{
    <script>
        var gritterAdd = function (message) {
            $.gritter.add({
                // (string | mandatory) the heading of the notification
                title: 'Notice!',
                // (string | mandatory) the text inside the notification
                text: message,
            });
        }
        $(function () {
            var totalTime = 15;
            var i = totalTime;
            $('.time-remaining').html(i);
            $('.start-button').click(function () {
                var i = totalTime;
                $('.time-remaining').html(i);
                var minute = setInterval(function() {
                    i--;
                    $('.time-remaining').html(i);
                    if (i == 0) {
                        clearInterval(minute);
                        $('.time-remaining').html('Your time is up!');
                        var usernameValue = $("#username").val();
                        var timeRemaining = $("#time-remaining").val();
                        var timeUsedValue = totalTime;
                        //this is obviously impossible right now, but in the future, the user should be able to stop the clock early.
                        if (i > 0) { timeUsedValue = totalTime - timeRemaining; }
                        //here we are going to send a request to the server.
                        $.ajax('/home/updateserver', {
                            type: 'POST',
                            data: { username: usernameValue, timeused: timeUsedValue},
                            success: function (data) {
                                if (data.success) {
                                    gritterAdd(data.updatedUsername + " was updated on server" + "'n A total of " + timeUsedValue + " seconds were used.");
                                } else {
                                    gritterAdd("An error occurred while updating.");
                                }
                            }
                        });
                    }
                    if (i == 10) { gritterAdd('You have 10 seconds remaining.'); }
                }, 1000);
            });
        });
    </script>
}
<div>
    <p>You've reached the home page!</p>
    <div class="timer-container">
        <h2>User:</h2>
        @*<select id="username">
            <option value="Joe">Joe</option>
            <option value="Brendan">Brendan</option>
        </select>*@
        <span>Time Remaining:</span>
        <p class="time-remaining"></p>
        <button class="start-button">Start</button>
    </div>
</div>

And the Controller -

namespace ScrumTimer.Web.Controllers
{
    public class HomeController : Controller
    {
        //
        // GET: /Home/
        public ActionResult Index()
        {
            return View();
        }
        public ActionResult About()
        {
            return View();
        }
        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        [HttpPost]
        public JsonResult UpdateServer(string username, int timeUsed)
        {
            using (var context = new ScrumTimerEntities())
            {
                var user = context.UserProfiles.SingleOrDefault(u => u.Username == username);
                var scrumTime = new ScrumTime {UserProfile = user, TimeUsed = timeUsed, CreatedAt = DateTime.Now};
                context.ScrumTimes.Add(scrumTime);
                context.SaveChanges();
                return Json(new { success = true, updatedUsername = username, scrumTimeId = scrumTime.Id });
            }
        }
    }
}

如何从SQL数据库填充选择列表

一个关于如何在MVC中创建下拉列表的小示例。从数据库获取数据的代码不包括在内,但可以在需要时添加。

模型:

public class ScrumTimerModel{
       [DisplayName("My display name")]
       public int SelectedItem { get; set; }
       public List<SelectListItem> Items { get; set; }
}

Display name是标签上显示的名称。"selectListitem"列表包含所有下拉项。这是一个名称-值集合。该值需要是一个字符串

控制器:

 public ActionResult Index()
 {
            //Get data from database
            return View(new ScrumTimerModel(){Items=listFromDb.Select(t=>
                        new  SelectListItem(){ 
                        Text=t.Name, Value=t.Value
                   }) 
            });
 }

填充模型并在视图上设置模型。索引页将获得本例中的模型。listFromDb是从数据库中检索到的行列表。您可以通过设置模型上的selectedItem属性来在下拉列表中设置选中的项。

视图(cshtml):

@model ScrumTimer.Web.Models.ScrumTimerModel
<div>
    <div>@Html.LabelFor(t=>t.SelectedItem)</div>
    <div>@Html.DropDownListFor(t => t.SelectedItem, Model.Items)</div>
</div>
视图顶部的

@model定义了将用于视图的模型。可以通过使用Model项来检索模型属性。