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.
在 Jquery Datatables 编辑器中,是否有任何选项可以将发送到服务器的请求数据包装成 JSON?在任何地方,数据都作为 URL 参数发送。JSON请求似乎没有选择。
谢谢。
在 ajax 部分尝试这个功能,对我有用。
var editor = new $.fn.dataTable.Editor( { ajax: { url: '...', data: function ( d ) { return JSON.stringify( d ); } }, ... } );