我尝试发布的API的构建方式如下:/device/invoiceNumber/{invoiceNumber}/{portableUnitId}
其中括号中的值必须替换为bootstrap-table中动态添加的值。我可以在另一个函数中生成自定义URL,但我在这里没有工作:
$(this).data('url', postInvNumUrl);
有什么想法吗?
答案 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);