- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我第一次在这里发布问题。我是 mvc 新手。我想开发两个级联下拉列表。我用的是mvc4。这是我所做的。
工厂类
public class Factory
{
[Key]
public int FactoryId { get; set; }
[Required(ErrorMessage = "Required")]
public string FactoryCode { get; set; }
[Required(ErrorMessage = "Required")]
public string FactoryName { get; set; }
public int City { get; set; }
public int Country { get; set; }
我分别有具有外键关系的 Country 和 City 类
城市类
public class City
{
[Key]
public int CityId { get; set; }
[Required(ErrorMessage = "Required")]
public string CityCode { get; set; }
[Required(ErrorMessage = "Required")]
public string CityName { get; set; }
[ForeignKey("Country")]
public int CountryId { get; set; }
public virtual Country Country { get; set; }
}
国家级
public class Country
{
[Key]
public int CountryId { get; set; }
[Required(ErrorMessage = "Required")]
public string CountryCode { get; set; }
[Required(ErrorMessage = "Required")]
public string CountryName { get; set; }
public virtual List<City> cities { get; set; }
}
工厂 Controller
public ActionResult FactoryIndex(string A, int? Id, string sortOrder, string currentFilter, string searchString, int? page)
{
var objContext = new KnittingdbContext();
if (A == "New")
{
var model = new Factory();
ViewData["mdl"] = model;
ViewBag.CountryList = objContext.Countries;
ViewBag.Module = A;
}
.....................
在 IndexView 中渲染局部 View
@if (ViewBag.Module != null)
{
if (ViewBag.Module == "New")
{
Html.RenderPartial("~/Areas/Masters/Views/Factory/_FactoryCreate.cshtml", ViewData["mdl"]);
}
_Factory创建部分 View
@Html.DropDownListFor(a=>a.Country,new SelectList(ViewBag.CountryList, "CountryId", "CountryName"), "Select country", new {id="CountryId", @class = "form-control"})
@Html.DropDownListFor(a => a.City; a.City, new SelectList(Enumerable.Empty<SelectListItem>(), "CityId", "CityName"), "Select city", new {@class = "form-control" })
部分 View 中的 jquery 脚本
$(function() {
$('#CountryId').change(function () {
$.ajax({
url: '/Factory/FillCity/',
type: "GET",
dataType: "JSON",
data: { Country: countryId },
success: function (cities) {
$("#City").html("");
$.each(cities, function (i, city) {
$("#City").append(
$('<option></option>').val(city.CityId).html(city.CityName));
});
}
});
})
})
FactoryController 中的 ActionResult 获取相关城市数据
public ActionResult FillCity(int country)
{
var db = new KnittingdbContext();
var cities = db.Cities.Where(c =>c.CountryId == country);
return Json(cities, JsonRequestBehavior.AllowGet);
}
国家/地区下拉列表正在运行。但 City DDL 不起作用。数据不会被绑定(bind)。当 CountryId
发生更改时,它会出现在 jquery 脚本中。我可以使用警报识别它。但是在脚本中的 URL 属性之后它不起作用。
成功方法没有被执行。我认为问题在于我呈现网址的方式。我用不同的方式尝试过。但还是没能解决。这些 View 和 Controller 位于一个区域中。
请帮助我。提前致谢!
最佳答案
您没有将第一个下拉列表的选定值传递给 Controller 方法,因此它会抛出异常(country
的类型为 int
并且不能为 null
)。您的脚本应该是(请注意,不清楚为什么您要将 id
属性从 id="Country"
更改为 id="CountryId"
通过使用new { id="CountryId"}
因此此示例使用默认值
var cityDropdown = $("#City"); // cache it to avoid repeatedly searching the DOM
$('#Country').change(function () {
$.ajax({
url: '@Url.Action("FillCity", "Factory")', // dont hard code your url's
type: "GET",
dataType: "JSON",
data: { Country: $(this).val() }, // pass the selected value
success: function (cities) {
cityDropdown.empty();
$.each(cities, function (i, city) {
cityDropdown.append($('<option></option>').val(city.CityId).html(city.CityName));
});
}
});
更简单
$.getJSON('@Url.Action("FillCity", "Factory")', { Country: $(this).val() }, function(cities){
cityDropdown.empty();
...
});
另请注意,您的方法正在序列化 typeof City
的所有属性,包括 CityCode
、CountryId
和 Country
(以及您从未使用过的所有属性(Country
),因此这是浪费带宽并且只会降低性能(并且有可能导致循环引用异常)。将您的方法更改为
public JsonResult FillCity(int country)
{
var db = new KnittingdbContext();
var cities = db.Cities.Where(c => c.CountryId == country).Select(c => new
{
CityId = c.CityId,
CityName = c.CityName
};
return Json(cities, JsonRequestBehavior.AllowGet);
}
还请注意,您的代码还存在其他问题,例如,如果您出现验证错误并在 POST 方法中返回 View ,则不会填充城市下拉列表,从而迫使用户重新重新选择。建议您开始使用 View 模型并查看此 DotNetFiddle 中的代码
关于使用 dropdownlist mvc 无法准确调用 JQuery 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32021668/
当然,您可以将剩余文件大小除以当前下载速度,但如果您的下载速度波动(而且它会波动),这不会产生很好的结果。有什么更好的算法可以产生更平滑的倒计时? 最佳答案 安exponential moving a
对于一个业余项目,我正在尝试对齐照片并创建 3D 图片。我基本上在一个钻机上有 2 个相机,我用来拍照。我会自动尝试以您获得 3D SBS 图像的方式对齐图像。 它们是高分辨率图像,这意味着需要处理大
当然,您可以将剩余的文件大小除以当前的下载速度,但如果您的下载速度波动(而且会波动),这不会产生很好的结果。什么是产生更平滑倒计时的更好算法? 最佳答案 安exponential moving ave
我有一个数据集,其中包含患有糖尿病和未患有糖尿病的人。我想使用这些数据训练一个模型来计算糖尿病状况未知的人的风险概率。我知道在培训中没有被诊断出糖尿病的人大多数都没有糖尿病,但很可能其中一些人可能患有
let parent = path[row-1] let child = path[row] let indexOfChild = matrix[parent.obje
我正在编写一些使用 Element.getBoundingClientRect 的代码(gBCR),加上内联样式更新,以执行计算。 这不适用于一般网站,我不关心或不感兴趣是否有“更好的 CSS 方式”
我有一个很大的 csv 文件,其中包含大量脏数据,我想通过消除所有不是绝对必要的值来稍微清理一下它。 Here是我正在谈论的文件。 它有以下组件: 网站,标题,开始日期,开始日期,雇主,地点,纬度,
有谁知道一个库,它为 Java 提供了一个错误不高于 1-2 毫秒的 Thread.sleep()? 我尝试了 sleep 、错误测量和 BusyWait 的混合,但在不同的 Windows 机器上我
UiApp有DateBox和 DateTimeFormat 对于那个类(class)。但是,不存在诸如 TimePicker 或 TimeBox 这样的东西,用户可以通过明确指定的方式(例如通过使用
因此,我使用 sklearn 的 svm.SVC 模块编写了一个程序来学习 mnist 数据集,出于某种原因,每当我计算其准确性为 100% 时。这似乎好得令人难以置信,这是预期的吗? from sk
我当前找到了 gpytorch ( https://github.com/cornellius-gp/gpytorch )。它似乎是将 GPR 集成到 pytorch 中的一个很棒的包。第一次测试也呈
我正在使用 QT Creator 5.9 创建一个简单的 Web 浏览器模型,我的 EditLine/Text Box 有问题: 1.如何在转到不同的网站/页面后自动更新显示的 URL 字符串。 2。
我在 Linux 上尝试 time -p 命令,我写了一些代码来浪费 CPU 周期: #include using namespace std; int main() { long int c;
亲爱的程序员/脚本编写者/工程师/其他人, 问题:我目前正在为 Android 3.2 平板电脑开发增强现实应用程序,但在获取准确的罗盘读数方面遇到一些问题。我需要确切地知道平板电脑所面向的 (z)
我最近一直在尝试了解 Apache Spark 作为 Scikit Learn 的替代品,但在我看来,即使在简单的情况下,Scikit 收敛到准确模型的速度也远远快于 Spark。例如,我使用以下脚本
如果不是,它的准确性如何? 我想在下载之前知道图片的大小。 最佳答案 HTTP Content-length header 是否格式错误?是的。 您是否应该相信它能公平地表示消息正文的大小?是的。 关
这是一个关于 ngram 线性回归的问题,使用 Tf-IDF(术语频率 - 逆文档频率)。为此,我使用 numpy 稀疏矩阵和 sklearn 进行线性回归。 使用一元语法时,我有 53 个案例和 6
对于某些给定的固定宽度,如何计算特定标签 (NSTextField) 中字符串的高度? 我用谷歌搜索了各种方法并尝试了 this method from Apple .它的工作原理,除了高度变成一行对
我是一名优秀的程序员,十分优秀!