diff options
author | Li Jin <dragon-fly@qq.com> | 2020-01-28 03:11:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-28 03:11:38 +0800 |
commit | 473a07cadee95f2b372d47e8aee815a526a9eb6f (patch) | |
tree | e2a5e3da06f26dcc44c1973a6c04bcfc55f132b7 | |
parent | 2c944fba7009f3c4fd1b83f74d4a1099b3f3eee4 (diff) | |
download | yuescript-473a07cadee95f2b372d47e8aee815a526a9eb6f.tar.gz yuescript-473a07cadee95f2b372d47e8aee815a526a9eb6f.tar.bz2 yuescript-473a07cadee95f2b372d47e8aee815a526a9eb6f.zip |
Update README.md
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ end)) | |||
61 | do | 61 | do |
62 | http.get("ajaxtest", function(data) | 62 | http.get("ajaxtest", function(data) |
63 | body[".result"]:html(data) | 63 | body[".result"]:html(data) |
64 | return http.get("ajaxprocess", data, function(processed) | 64 | return http.post("ajaxprocess", data, function(processed) |
65 | body[".result"]:append(processed) | 65 | body[".result"]:append(processed) |
66 | return print("done") | 66 | return print("done") |
67 | end) | 67 | end) |