x-editable:如何使用字段值更新帖子URL本身?

时间:2017-04-21 16:11:02

标签: jquery ajax x-editable bootstrap-table

我尝试发布的API的构建方式如下:/device/invoiceNumber/{invoiceNumber}/{portableUnitId}

其中括号中的值必须替换为bootstrap-table中动态添加的值。我可以在另一个函数中生成自定义URL,但我在这里没有工作:

$(this).data('url', postInvNumUrl);

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我找到了解决方案,您必须更新editable本身的选项:

// This is where the magic happens
$(this).editable('option', 'url', postInvNumUrl);

// Not sure if this is needed anymore 
$(this).data('url', postInvNumUrl);