我在WebApi项目中使用Swashbuckle.core.5.5.3。我可以在我的模型中的xml注释中使用链接,如下所示:
/// <summary>
/// This is a test comment
/// http://www.microsoft.com
///
/// </summary>enter code here
是否有可能添加这样的相对路径,以便我不需要将其从服务器更改为服务器?
myserver + '/path/doc.html'
答案 0 :(得分:1)
我能够解决它,因为这似乎与Swashbuckle无关。以下link帮助我找到答案。
<script type="text/javascript">
function changeDivContent() {
document.getElementById('graphcon').innerHTML = '<canvas id="myChart"></canvas>';
}
</script>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-default">
<input type="radio" name="ok2017" id="ok2017" onClick="changeDivContent()"> 2017
</label>
</div>
<div id="graphcon" class="graphcon"></div>