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.
我正在使用 Google 将 API 翻译为内容,在某些情况下,此内容的长度超过了 Google 对 API 调用施加的限制。
任何人都知道拆分内容以便可以使用多个请求的最佳方法吗? 我很清楚我不想破坏 html 或内容,使其无法翻译。
那么其中一种解决方案可能只是在“。”上使用 JavaScript 拆分功能拆分内容。或者 ”!” 或者 ”?” 或任何其他可以结束句子的字符 ( content.split(".");) 检查其长度是否小于 API 的限制,并将其逐句传递给 API。这样你就不会失去上下文。
content.split(".");