我试图从我的Asp.Net MVC Web应用程序中从javascript中加载gexf文件,我不知道为什么当我运行网站时,它找不到文件我&# 39;即使路径是正确的,也要寻找。
http://localhost:55833/Content/les_miserables.gexf是查找文件的位置,我在Content文件夹中有文件但是我收到了无法找到的错误(404)。
我使用T4MVC生成http://localhost:55833/Content/les_miserables.gexf的链接,以防您有任何人不熟悉。我确信这是正在生成的链接,因为我只是从我的Google Chrome浏览器中复制并粘贴了返回404的路径。
我做错了什么?
这是我的javascript:
<script src="@Links.Scripts.sigma.sigma_parsers_json_min_js"></script>
<script src="@Links.Scripts.sigma.sigma_plugins_animate_min_js"></script>
<script>
sigma.parsers.gexf(
'@Links.Content.les_miserables_gexf',
{ // Here is the ID of the DOM element that
// will contain the graph:
container: 'sigma-container'
},
function(s) {
// This function will be executed when the
// graph is displayed, with "s" the related
// sigma instance.
}
);
</script>
这是我直截了当的html:
<div class="page">
<div class="page-content padding-30 container-fluid">
<div id="container">
<div id="sigma-container"></div>
</div>
</div>
</div>
感谢您的时间。