我是MVC的新手,我正在使用此链接作为教程,将canvasjs中的图形合并到模态中。 https://canvasjs.com/docs/charts/integration/asp-net-mvc-charts/
执行那里的指示(仅限静态显示),它完全加载窗口加载,正如预期的那样基于此代码
<script type="text/javascript">
window.onload = function () {
var chart = new CanvasJS.Chart("chartContainer", {
theme: "theme2",
animationEnabled: true,
title: {
text: "Simple Column Chart in ASP.NET MVC"
},
subtitles: [
{ text: "Try Resizing the Browser" }
],
data: [
{
type: "column", //change type to bar, line, area, pie, etc
dataPoints: [
{ x: 10, y: 71 },
{ x: 20, y: 55 },
{ x: 30, y: 50 },
{ x: 40, y: 65 },
{ x: 50, y: 95 },
{ x: 60, y: 68 },
{ x: 70, y: 28 },
{ x: 80, y: 34 },
{ x: 90, y: 14 }
]
}
]
});
chart.render();
};
</script>
我现在想要的是遵循相同的简单指令并在模态中显示图形。
我有一个表,其中一个列中有“查看图形”按钮“此过程设置为根据数据库中的记录动态显示图形。但是现在,我只想显示图形教程链接。
这个按钮调用一个javascript函数并在控制器中调用一个动作,在控制器里面,它会将从viewmodel获取的数据传递给一个部分视图。
这是函数的javascript
patient.js
// Modal view user details
function ViewVVSDetails(patientId, type, graph) {
var options = { "backdrop": "static", keyboard: true };
$.ajax({
type: "GET",
data: { patientId: patientId, type: type, graph: graph },
url: "/Patient/GetVisitVitalSignDetails",
contentType: "application/json; charset=utf-8",
datatype: "json",
success: function (data) {
console.log(data);
$('#modalVVSDetailsContent').html(data);
$('#modalVVSDetails').modal(options);
$('#modalVVSDetails').modal('show');
},
error: function () {
bootbox.alert({
size: "small",
title: "Error!",
message: "There is an error while loading data."
});
}
});
}
这里是视图,其中放置了模态的div,以及表和按钮所在的主页面,将只显示div模式的代码
patientInfo.cshtml
<!-- Modal: Clinic Details -->
<div id="modalVVSDetails" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div id="modalVVSDetailsContent" class="modal-content"></div>
</div>
</div>
这是控制器
patientController.cs
[HttpGet]
public IActionResult GetVisitVitalSignDetails(int patientId, string type, string graph)
{
var visitSign = _patient.GetVisitVitalSignHeight(patientId);
if (type == "h")
{
if (graph == "hgn")
{
return PartialView("_ViewVisitVitalSignDetails", visitSign);
}
else
{
return PartialView("_ViewVisitVitalSignGraphDetails", visitSign);
}
}
else
{
if (graph == "wgn")
{
return PartialView("_ViewVisitVitalSignWeightDetails", visitSign);
}
else
{
return PartialView("_ViewVisitVitalSignWeightGraphDetails", visitSign);
}
}
}
这里是名为(_ViewVisitVitalSignGraphDetails)的局部视图,其中显示图形的代码是其中的一部分。 我刚刚从原始代码中删除了window.onload,因为现在不是这个想法。
_partielPatientModal.cshtml
@using UMP.ClinicalSystem.Models.Models;
@using UMP.ClinicalSystem.Models.Dto;
@model IEnumerable<VisitVitalSignVM>
@{
Layout = null;
}
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
<div id="chartContainer"></div>
<script type="text/javascript">
$( function () {
var chart = new CanvasJS.Chart("chartContainer", {
theme: "theme2",
animationEnabled: true,
title: {
text: "Simple Column Chart in ASP.NET MVC"
},
subtitles: [
{ text: "Try Resizing the Browser" }
],
data: [
{
type: "column", //change type to bar, line, area, pie, etc
dataPoints: [
{ x: 10, y: 71 },
{ x: 20, y: 55 },
{ x: 30, y: 50 },
{ x: 40, y: 65 },
{ x: 50, y: 95 },
{ x: 60, y: 68 },
{ x: 70, y: 28 },
{ x: 80, y: 34 },
{ x: 90, y: 14 }
]
}
]
});
chart.render();
});
</script>
我尝试在里面输入文字进行测试,它已经显示了模态,但不是图形。因此,当放入模态时,链接中的示例javascript图形不起作用,并且在我删除window.onload之后。
<div id="chartContainer">sample text</div>
主要问题,如何在调用模式中显示图形
其他信息
这是执行结果后的结果
这是显示模式的屏幕截图,但不是图表
答案 0 :(得分:0)
控制器返回html视图,但你的ajax请求内容类型是json。从ajax请求中删除此行。
contentType: "application/json; charset=utf-8",