0

次の 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) がデフォルトであるため、必要ありません。

参考文献

MIME タイプ
XMLHttpRequest

4

1 に答える 1