我要求用户提供电子邮件,提供旧电子邮件。但是,当我中断被调用的网络服务时,我没有得到用户投入的价值。
Ext.Msg.prompt('Email', 'Please confirm your email:', function(btn, text, cfg) {
if(btn == 'ok' && Ext.isEmpty(text)) {
var newMsg = '<span style="color:red">Please enter your email:</span>';
Ext.Msg.show(Ext.apply({}, { msg: newMsg }, cfg));
}
else
{
$.ajax({
type: 'POST',
url: "/Services/Email.asmx/UpdateEmail",
data: '{email:"' + email + '"}',
contentType: "application/json; charset=utf-8",
dataType: "json"
});
}
}, false, this, email);
我觉得我做得不对。有任何想法吗?