Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
场景如下:
$.ajax({ url: 'createPdf.do', data: {doc: currentTab}}).done(function(html){ alert(html); }); });
但我知道这不是合适的方法,因为我真正需要的是数据本身而不是 html,所以我做了一些研究,我发现解决方案是使用 json,但没有找到一个很好的例子