0

varannotation_id を送信:

echo $json = json_encode(array('annotation_id'=>$save[0]));

var annotation_id を取得します。

if (image.useAjax) {
      $.ajax({
           url: image.saveUrl,
           data: form.serialize(),
           error: function(e) { 
             alert("An error occured saving that note.");
           },
           success: function(data) {
                 if (data.annotation_id != undefined) {
                     editable.note.id = data.annotation_id;                         
                     alert(editable.note.id);
                }
          },
          dataType: "json"
       });
 }

だから...私のコードの何が問題なのですか? この変数の値を取得していません。

4

0 に答える 0