我仍然需要在本地主机上的 Web 服务器上尝试它,但我认为问题可能出在其他地方。
我正在使用 DataTables 在 ASP.NET MVC 中开发解决方案,两者之间的交互将非常轻松。
如果我在 TableTools.js 中设置所需的 SWF 路径,我的资源的完整路径或相对路径就可以了
TableTools.DEFAULTS = {
"sSwfPath": "http://localhost:51203/Content/copy_csv_xls_pdf.swf",
"sRowSelect": "none",
"sSelectedClass": null,
"fnPreRowSelect": null,
"fnRowSelected": null,
"fnRowDeselected": null,
"aButtons": [ "copy", "csv", "xls", "pdf", "print" ],
"oTags": {
"container": "div",
"button": "a", // We really want to use buttons here, but Firefox and IE ignore the
// click on the Flash element in the button (but not mouse[in|out]).
"liner": "span",
"collection": {
"container": "div",
"button": "a",
"liner": "span"
}
}
};
如果我尝试在组件初始化中对其进行试点,它似乎没有在初始化中分配它。
$('.ReservationTable').dataTable({
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": ["copy"],
"sSwfPath": "http://localhost:51203/Content/copy_csv_xls_pdf.swf"
}
});
有什么提示吗?