我有一些代码,例如:
$.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 返回一个布尔值。我以为我可以像上面那样测试返回值,但它不起作用。有人知道我在做什么错吗?