フォームの約150のエントリを含むJSONオブジェクトがあり[key] : [sentence]
、文には同じテキストが何度も含まれていることがよくあります。例えば:
var test = {
"abc" : "This is the first sentence that is in this JSON object. Hello! Blue."
"abd" : "Red. This is the second sentence that is in this JSON object. Hi!"
"abe" : "This is the third sentence that is in this JSON object. Hey! Yellow."
"abf" : "White. This is the fourte sentence that is in this JSON object. Hola!"
}
文字列「このJSONオブジェクトにある文」を確認できます。かなり頻繁に繰り返されます。オブジェクトからエントリを取得したら、アンカーに置き換えてからアンカーを置き換える方が効率的でしょうか?あれは:
var test = {
"abc" : "This is the first #anchor# Hello!"
"abd" : "This is the second #anchor# Hi!"
"abe" : "This is the third #anchor# Hey!"
"abf" : "This is the fourte #anchor# Hola!"
}
var anchor = "sentence that is in this JSON object."
そして、JSONから目的の値を取得したら、文字列を実際のテキストに置き換えますか?文には特定のパターンはありませんが、多くの文には繰り返しのテキスト文字列が含まれています。あなたの提案をありがとう!