首页 > 其他分享 >datatables edit 重新定义 创建 修改 删除的 URL路径

datatables edit 重新定义 创建 修改 删除的 URL路径

时间:2022-11-21 22:33:01浏览次数:51  
标签:datatables edit rest label URL editor php data name

var  editor;  // use a global for the submit and return data rendering in the examples

$(document).ready( function () {
editor = new $.fn.dataTable.Editor( {
ajax: {
create: {
type: 'POST' ,
url: '../php/rest/create.php'
},
edit: {
type: 'PUT' ,
url: '../php/rest/edit.php?id=_id_'
},
remove: {
type: 'DELETE' ,
url: '../php/rest/remove.php?id=_id_'
}
},
table: "#example" ,
fields: [ {
label: "First name:" ,
name: "first_name"
}, {
label: "Last name:" ,
name: "last_name"
}, {
label: "Position:" ,
name: "position"
}, {
label: "Office:" ,
name: "office"
}, {
label: "Extension:" ,
name: "extn"
}, {
label: "Start date:" ,
name: "start_date"
}, {
label: "Salary:" ,
name: "salary"
}
]
} );

$( '#example' ).DataTable( {
dom: "Bfrtip" ,
ajax: "../php/rest/get.php" ,
columns: [
{ data: null , render: function ( data, type, row ) {
// Combine the first and last names into a single table field
return data.first_name+ ' ' +data.last_name;
} },
{ data: "position" },
{ data: "office" },
{ data: "extn" },
{ data: "start_date" },
{ data: "salary" , render: $.fn.dataTable.render.number( ',' , '.' , 0, '$' ) }
],
select: true ,
buttons: [
{ extend: "create" , editor: editor },
{ extend: "edit" , editor: editor },
{ extend: "remove" , editor: editor }
]
} );
} );

标签:datatables,edit,rest,label,URL,editor,php,data,name
From: https://blog.51cto.com/drennetwork/5875352

相关文章

  • datatables edit 设置默认的语言
    vareditor;//useaglobalforthesubmitandreturndatarenderingintheexamples$(document).ready(function(){editor=new$.fn.dataTable.Editor......
  • datatabes edit时设置默认数值和使用函数
    vareditor;//useaglobalforthesubmitandreturndatarenderingintheexamples$(document).ready(function(){editor=new$.fn.dataTable.Editor......
  • 11-21 日鲜花 - Edit
    <metahttp-equiv="refresh"content="3;url=https://www.luogu.com.cn/blog/Junko-Youmu/e-d-i-t">这东西居然可以在博客园后台预览一个网页?厉害。原文:https://www.lu......
  • URL收敛
        打开收敛URL后的效果:    问:收敛后,查接口调用不方便。如果去掉,会有什么影响答:您好,这边和后端确认了下:对实际请求统计以及指标这些无影响问:收敛功能解决了什么......
  • 获取URL中的数值
    获取路由对象现在有一串URLhttp://localhost:8080/home?code=1234753 需求:获取其中的code=XXX的值this.$route.query.code 路由有可能会出现未能加载完成路......
  • Windows 10/11 家庭版中使用组策略gpedit.msc
    保存为了gpedit.bat,使用管理员身份运行@echooffpushd"%~dp0"dir/bC:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum......
  • NSURL
    1、简介在文件系统中,文件和目录都是使用完整文件路径来唯一标识的。我们可以使用NSString和NSURL两种对象来描述文件路径。官方建议使用NSURL。NSURL是用来表示......
  • python 发送 application/x-www-form-urlencoded 类型的数据包
    在网上百度了很多,坑的要死,基本不咋好用,自己多尝试了几遍,成功实现了。data的构建方式data=f"page={page}&sign={sign}&t={t}"直接这么弄就可以了,不用搞的那么麻烦。......
  • 关于GET/POST请求传输时URL编码的介绍记录随笔
    UTF-8编码的汉字:少数是汉字每个占用3个字节,多数占用4个字节#GET请求编码Chrome会先把URL中非ASCII字符按照某种编码格式(谷歌浏览器是UTF-8)编码成byte数组后,然后转成16进......
  • frameset-隐藏url的好方法
    <!DOCTYPEhtml><htmllang="en"backgound=""><head><metacharset="UTF-8"/><metahttp-equiv="X-UA-Compatible"content="IE=edge"/><metaname......