我正在尝试拨打ASPX网址;然而,回报不断回归失败。
我在其他编程项目中使用过这个url,但这是我第一次在Ext JS中使用它。我在网上看过各种各样的例子,似乎没有一个能解决我的问题。下面是我的javascript文件,任何帮助将在我的按钮点击成功返回时受到赞赏。
我使用了Fiddler,它正在调用url;但是,即使返回的JSON是{success:true},它也没有按下我的Debugger.Launch()语句或调用我的“Success”警告。
所以,它没有从javascript调用中输入我的C#代码,即使fiddler显示正在调用http://localhost/login/login.aspx。
Ext.require([
'Ext.form.*',
'Ext.window.Window'
]);
Ext.onReady(function () {
Ext.QuickTips.init();
var field = new Ext.form.field.Text({
renderTo: document.body
}),
fieldHeight = field.getHeight(),
padding = 5,
remainingHeight;
field.destroy();
remainingHeight = padding + fieldHeight * 2;
var login = new Ext.form.Panel({
border: false,
fieldDefaults: {
msgTarget: 'side',
labelWidth: 100
},
defaultType: 'textfield',
bodyPadding: padding,
items: [{
xtype: 'box',
region: 'west',
width: 128,
height: 46,
autoEl: { tag: 'img', src: 'images/logo.png' },
style: 'margin: 10px 0px 15px 15px'
}, {
allowBlank: false,
fieldLabel: 'Company Name',
name: 'company',
emptyText: 'Company ID',
style: 'margin: 10px 0px 10px 30px'
}, {
allowBlank: false,
fieldLabel: 'User ID',
name: 'user',
emptyText: 'User Name',
style: 'margin: 10px 0px 10px 30px'
}, {
allowBlank: false,
fieldLabel: 'Password',
name: 'pass',
emptyText: 'Password',
inputType: 'password',
style: 'margin: 10px 0px 10px 30px'
}]
});
new Ext.window.Window({
autoShow: true,
title: 'Support Tools Login',
resizable: false,
closable: false,
width: 350,
height: 250,
layout: 'fit',
plain: true,
items: login,
constrain: true,
draggable: false,
buttons: [{
text: 'Login',
formBind: true,
handler: function () {
login.getForm().submit({
method: 'POST',
url: 'http://localhost/login/login.aspx',
waitTitle: 'Connectiong',
waitMsg: 'Sending data...',
success: function (login, action) {
Ext.Msg.alert('Success');
},
failure: function (login, action) {
Ext.Msg.alert('Failure')
}
});
}
}]
});
});
Aspx文件:
using System;
using System.Diagnostics;
using System.Web;
using SupportToolsCommon;
namespace App.login
{
public partial class login : System.Web.UI.Page
{
private static Database db;
protected void Page_Load(object sender, EventArgs e)
{
Response.Clear();
Response.Write("{success: true}");
Response.End();
}
}
}
答案 0 :(得分:0)
您的代码是正确的。我在这个jfFiddle中进行了测试,只需更改网址,一切正常。请求正在触发,收到响应......
url: '/echo/json/',
params: {json: Ext.encode({success: true}), delay: .5},
因此,您的网址或服务器存在问题。正如我在评论中所说,您确定要使用https://localhost/...
加入该页面而不仅仅是http://localhost/...
吗?