以下 JavaScript 代码片段的 LiveCode 等效项是什么?
var req = new XMLHttpRequest();
req.open("PUT", theURLoftheNoSQLstore, false);
req.setRequestHeader('Content-Type', mimeType);
req.send(theJSONobjString);
参数定义为
theJSONobj = {};
theJSONobj["aKey"] = "aValue";
theJSONobj["anotherKey"] = 123;
theJSONobj["note"] = "some note about the issue";
theJSONobjString = JSON.stringify(theJSONobj);
theURLoftheNoSQLstore ="http://localhost:5984/thedb/thekey"
mimeType="application/json";
笔记
为了完整起见,已添加设置 mimeType。但是,对于发布到 JSON 存储,它不是必需的,因为在这种情况下这是默认设置(couchDB)。
参考