0

model我喜欢的,

  def question_hash_string
    @question_hash_string || '{}'
  end

  def question_hash
    ActiveSupport::JSON.decode question_hash_string
  end

Javascript,

var question_hash_element = document.getElementById('enr_rds_batch_update_question_hash_string');
var question_hash = JSON.parse(question_hash_element.value);

question_hash[batch_question_id] = (batch_answer_id || batch_rdsap_answer || batch_answer_checkbox);
question_hash_element.value = JSON.stringify(question_hash);

它会给出像"{"16":"3","28":false}"

我想用下面的答案添加另一个值,

question_hash[batch_question_id] = ((batch_answer_id || batch_rdsap_answer || batch_answer_checkbox) && (build_id));

"{"16":"3","28":false:"2", "3":"55":"54"}"等等。我需要使用“:”添加现有记录的另一列。

4

2 回答 2

2

向 javascript 对象添加键/值对:

var question_hash = { question_id:2, answer_id:3 };
question_hash.build_id = 6;
于 2013-01-15T12:34:18.507 回答
0

您可以在 JabvaScript 代码中添加新元素。

function doSomething(value) {
   var jsonValues = getParameters();

   jsonValues.value3 = value; //Here you add a new value in your json
}

//Example of function to generate json
function getParameters() {

    return {
        value: 'a',
        value1: 'b',
        value2: 'c'
    };
}
于 2013-01-15T12:34:58.457 回答