Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 JavaScript 中发送StringEntity类似的 java HttpRequest。我知道在 java 中但如何在 java 脚本中发送。
StringEntity
HttpRequest
JavaScript 和 HTTP 都没有任何StringEntity.
谷歌搜索它表明这StringEntity是一个 Java 对象,它是一个带有一些额外方法的字符串。
让您的 JavaScript 使用 XMLHttpRequest(或 JSONP)向服务器发送文本,就像处理任何其他 Ajax 请求一样。将该文本转换为StringEntity服务器端代码中的对象。