以下是我用于呈现html视图的代码。 @ { Layout = null; }
<script type="text/javascript">
$(document).ready(function () {
debugger;
$("#divChart").load('http://localhost/abcd.Portal/BarChart.html');
});
</script>
<div style="width: 100%;" id="divChart"></div>
我正在尝试加载的HTML
<style>
.bar {
fill: steelblue;
}
.bar:hover {
fill: brown;
}
.axis {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis path {
display: none;
}
</style>
<body>
<script>
debugger;
var margin = { top: 20, right: 20, bottom: 30, left: 40 },
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var x = d3.scale.ordinal()
.rangeRoundBands([0, width], .1);
var y = d3.scale.linear()
.range([height, 0]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("left")
.ticks(10, "%");
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
$.ajax({
url: 'http://localhost/abcd.Portal/Dashboard/GetData',
type: 'GET',
data: '',
cache: false,
dataType: 'text',
async: true,
error: function (xhr) {
//alert('Error: ' + xhr.statusText);
},
success: function (result) {
debugger;
result = eval(JSON.parse(result));
x.domain(result.map(function (d) { return d.letter; }));
y.domain([0, d3.max(result, function (d) { return d.frequency; })]);
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Frequency");
svg.selectAll(".bar")
.data(result)
.enter().append("rect")
.attr("class", "bar")
.attr("x", function (d) { return x(d.letter); })
.attr("width", x.rangeBand())
.attr("y", function (d) { return y(d.frequency); })
.attr("height", function (d) { return height - y(d.frequency); });
}
});
function type(d) {
d.frequency = +d.frequency;
return d;
}
</script>
</body>
我没有错误,但我的视图没有渲染。我正在尝试渲染d3条形图。任何我出错的建议。
我有一个加载我的局部视图的父级。现在,如果我在部分i视图中编写html代码,则会出错。所以,我试着加载html文件。
答案 0 :(得分:0)
这不是使用jquery加载局部视图的方法,使用动作。
创建一个将返回局部视图的操作:
public ActionResult BarChart()
{
return View();
}
并在jquery中:
$(document).ready(function () {
debugger;
$("#divChart").load('@Url.Action("BarChart","ControllerName")');
});