gpt4 book ai didi

javascript - 无法在 Sencha 中使用 ajax.request

转载 作者:行者123 更新时间:2023-11-30 17:48:00 24 4
gpt4 key购买 nike

我的 Controller

Ext.define('MyApp.controller.login', {
extend: 'Ext.app.Controller',
requires: ['MyApp.view.login', 'Ext.field.Input', 'Ext.Ajax'],
config: {
refs: {
loginButton : ' login #logInButton',
loginform : 'login #loginform'
},
control: {
loginButton:{
tap: 'loginButton'
}
}
},
//functions
loginButton: function(){
Ext.Msg.alert('Logged In');

Ext.Ajax.request({
url: getLogonUrl(),
method: 'POST',
params: {
username: Ext.getCmp('username').getValue(),
password: Ext.getCmp('password').getValue(),
},
success: function (response) {
Ext.Msg.alert('Logged In');

var result = Ext.JSON.decode(response.responseText);
console.log(resultResponse.Texts);
if (result.success === "true")
Ext.Msg.alert('Logged In');
else
Ext.Msg.alert('Not Logged In');
},
});
}
});

我的登录在 View 中

Ext.define('MyApp.view.login', {
extend: 'Ext.form.Panel',
alias: "widget.loginview",
xtype: 'login',
requires: [
'Ext.form.FieldSet','Ext.field.Text', 'Ext.Button',
'Ext.field.Password','Ext.field.Hidden', 'Ext.Img'
],
config:{
id: 'loginform',
iconCls: 'user',
title: 'Login',
styleHtmlCls: true,
styleHtmlContent: true,
scrollable: null,
items: [
{
xtype: 'image',
src:'app/view/img/airitlogo.png',
height: 200,
style:{ top: '100px'},
},
{
xtype: 'fieldset',
width: 1500,
height: 200,
style: ' margin: 150px 0px 0px 200px', // backgroundColor: ' #015486'}
cls: 'login',
title: '<div id="title">PROPworks - Meter Sign In</div>',
items: [
{
xtype: 'label',
html: 'Activation failed',
itemId: 'failLogin',
hidden: true,
hideAnimation: 'fadeOut',
showAnimation: 'fadeIn',
style: 'background: yellow; margin: 5px, 0px',
},
{
xtype: 'textfield',
placeHolder: 'Username',
Id: 'username',
name : 'usernameTextField',
style: 'height: 60px',
},
{
xtype: 'passwordfield',
placeHolder: 'Password',
Id: 'password',
name : 'passwordTextField',
style: 'height: 60px',
}
]//second item list
},
{
xtype: 'button',
itemId: 'logInButton',
text: 'Log In',
ui: 'confirm',
cls: 'button',
width: 1500,
style: ' margin: 15px 0px 0px 200px; height: 70px',
},
]//first item list
}
});

Ext.msg.alert(),一旦通过 ajax.request 就不起作用,我的 url 是一个从文件调用的函数我在我的 html 文件的头部导入了

<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
<meta charset="UTF-8">

<script type="text/javascript" src="js/pwmain-ui.js"></script>
<script type="text/javascript" src="js/jquery.min.js"> </script>
<script type="text/javascript" src="js/jquery-ui.js"> </script>
<script type="text/javascript" src="js/jsonselect.min.js"> </script>
<script type="text/javascript" src="js/jquery.easyui.min.js"></script>
<script type="text/javascript" src="js/jquery.atmosphere.js"> </script>
<title>MyApp</title>

最佳答案

在你的代码中有很多不必要的 , 可以破坏 Sencha 。

也许我错了,但你不应该在关闭 }] 括号之前放置 ,

我试图清理这些。这些很容易破坏 Sencha 。至少我对这类事情有很多问题。

Ext.define('MyApp.controller.login', {
extend: 'Ext.app.Controller',
requires: ['MyApp.view.login', 'Ext.field.Input', 'Ext.Ajax'],
config: {
refs: {
loginButton : ' login #logInButton',
loginform : 'login #loginform'
},
control: {
loginButton:{
tap: 'loginButton'
}
}
},
//functions
loginButton: function(){
Ext.Msg.alert('Logged In');

Ext.Ajax.request({
url: getLogonUrl(),
method: 'POST',
params: {
username: Ext.getCmp('username').getValue(),
password: Ext.getCmp('password').getValue()
},
success: function (response) {
Ext.Msg.alert('Logged In');

var result = Ext.JSON.decode(response.responseText);
console.log(resultResponse.Texts);
if (result.success === "true")
Ext.Msg.alert('Logged In');
else
Ext.Msg.alert('Not Logged In');
}
});
}
});

在 View 中登录:

Ext.define('MyApp.view.login', {
extend: 'Ext.form.Panel',
alias: "widget.loginview",
xtype: 'login',
requires: [
'Ext.form.FieldSet','Ext.field.Text', 'Ext.Button',
'Ext.field.Password','Ext.field.Hidden', 'Ext.Img'
],
config:{
id: 'loginform',
iconCls: 'user',
title: 'Login',
styleHtmlCls: true,
styleHtmlContent: true,
scrollable: null,
items: [
{
xtype: 'image',
src:'app/view/img/airitlogo.png',
height: 200,
style:{ top: '100px'}
},
{
xtype: 'fieldset',
width: 1500,
height: 200,
style: ' margin: 150px 0px 0px 200px', // backgroundColor: ' #015486'}
cls: 'login',
title: '<div id="title">PROPworks - Meter Sign In</div>',
items: [
{
xtype: 'label',
html: 'Activation failed',
itemId: 'failLogin',
hidden: true,
hideAnimation: 'fadeOut',
showAnimation: 'fadeIn',
style: 'background: yellow; margin: 5px, 0px'
},
{
xtype: 'textfield',
placeHolder: 'Username',
Id: 'username',
name : 'usernameTextField',
style: 'height: 60px'
},
{
xtype: 'passwordfield',
placeHolder: 'Password',
Id: 'password',
name : 'passwordTextField',
style: 'height: 60px'
}
]//second item list
},
{
xtype: 'button',
itemId: 'logInButton',
text: 'Log In',
ui: 'confirm',
cls: 'button',
width: 1500,
style: 'margin: 15px 0px 0px 200px; height: 70px'
}
]//first item list
}
});

关于javascript - 无法在 Sencha 中使用 ajax.request,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19712924/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com