私は次のようなコードを持っています:
$.post('/Invoice/UpdateFieldUser/', invoiceLine, function (data) {
if (data == 'false') {
alert("An approver could not be updated");
} else {
var fieldlabel = $('#fieldapprovallabel' + invoiceLineId + '');
fieldlabel.text($(".fieldapproverddl option:selected").text());
}
})
UpdateFieldUserはブール値を返します。上記のように戻り値をテストできると思いましたが、機能していません。誰かが私が間違っていることを知っていますか?