浏览代码

url encode

master
Pascal Gloor 5 年前
父节点
当前提交
d97edd6f7e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      www/js/autodoc.js

+ 1
- 1
www/js/autodoc.js 查看文件

@@ -489,7 +489,7 @@ function home_modal_close(docid) {
function document_update_name(docid, name) {
$.ajax({
type: "PATCH",
url: conf.openapi + "/documents/" + docid + "?name=" + name,
url: conf.openapi + "/documents/" + docid + "?name=" + encodeURIComponent(name),
data: null,
success: function(data) {


正在加载...
取消
保存