1 つの関数を使用していくつかの JavaScript 関数を組み合わせる際に問題がありました。仕事で見せる小さなシステムを構築しようとしています。それがどのように改善できるかを示すようなものです。展開用ではありません。
関数は次のようになります。
// To choose an errand or with a zero start a new errand.
function buildErrandBox(number)
{
$.ajax({
url: 'db/buildErrandBox.inc.php',
type:'POST',
dataType: 'json',
data: { customerNumber: $("#customerNumber").val(), errandNumber: number },
success: function(build){ $('#newErrandsBoxResult').empty(); $('#newErrandsBoxResult').append(build.buildForm); $('#newErrandsBoxTextResult').empty(); $('#newErrandsBoxTextResult').append(build.buildText); showMinorContent('#newErrands'); $('#errandArea').val(build.area); $('#errandGroup').val(build.group); $('#errandType').val(build.type); escalateOptions(); getEscalationGroups(); },
error: function (xhr, ajaxOptions, thrownError) { alert(xhr.status); alert(thrownError); }
});
}
// To save changes on a errand.
function saveErrand()
{
$.ajax({
url: 'db/saveErrandsForCustomer.inc.php',
type:'POST',
dataType: 'json',
data: { id: $("#errandID").val(),
telephone: $("#errandTelephoneNumber").val(),
email: $("#errandEmail").val(),
area: $("#errandArea").val(),
group: $("#errandGroup").val(),
type: $("#errandType").val()
},
success: function(output_string){ showCustomerErrands(); },
error: function (xhr, ajaxOptions, thrownError) { alert(xhr.status); alert(thrownError); }
});
}
// To save a new note on an errand.
function saveTextForErrand()
{
$.ajax({
url: 'db/saveErrandsText.inc.php',
type:'POST',
dataType: 'json',
data: { id: $("#errandID").val(), text: $("#newTextForErrandTextArea").val() },
success: function(output_string){ buildErrandBox($("#errandID").val()); },
error: function (xhr, ajaxOptions, thrownError) { alert(xhr.status); alert(thrownError); }
});
}
これらは、Web ページのボタンを使用するときに機能する 3 つの個別の機能です。最初にクリックして、新しい用事を開始します。お使いの種類が変わります。いくつかのメモを入れてください。そして、用事を保存します。すべて正常に動作します。
バックグラウンドで、build errand 関数が入力のボックス全体をビルドし、選択して errand を表示します。しかし、用事を保存する次の関数は、用事番号を認識し、用事をデータベースに保存します。
しかし、これらを以下のように組み合わせると
function preMadeErrand(area, group, type, text, servicetext)
{
buildErrandBox(0);
alert($("#errandID").val());
$('#errandArea').val(area);
changeErrandBoxes();
$("#errandGroup").val(group);
changeErrandBoxes();
$("#errandType").val(type);
$("#newTextForErrandTextArea").val(servicetext);
saveTextForErrand();
$("#newTextForErrandTextArea").val(text);
saveTextForErrand();
alert($("#errandID").val());
saveErrand();
}
errandID が未定義になります。何か案は?
アップデート!
関数の最初にアラートが表示されたとき、それは機能します。errandID を使用しようとする前に、ボックスを構築する機能が終了していないようです。2 つのアラートで、2 番目は errandID を取得します。
続行する前に buildErrandBox(0) のような 1 つの関数の実行を終了させる方法はありますか?