我正在关注一个senchaTouch
教程。我有一个名为的 Web 服务HelloWorld.php
,位于 URL 中http://mydomainTest.com/Proj/HelloWorld.php
。它需要 3 个值name
,email
和description
。
Web 服务使用POST
方法。
我的代码如下;我想知道的是我没有指定键的值(POST
值键)以及网络服务如何知道,为键保存什么(name,email, description
)
在创建时native iPhone apps
,我常说setPostValue: forKey:
(in ASIHttpRequest
),我需要知道的是如何为传入的值设置Key Sencha
。我在下面附上了我的代码,请看看并帮助我。
Ext.define('GS.view.Contacts', {
extend:'Ext.form.Panel',
xtype:'contactform',
config:{
title:'Contact',
iconCls:'user',
url:'http://mydomainTest.com/Proj/HelloWorld.php',
items:[
{
xtype:'fieldset',
title: 'Contact Us',
instructions: '(email is not required)',
items: [
{
xtype:'textfield',
name: 'name',
label:'Name'
},
{
xtype:'emailfield',
name:'email',
label:'Email'
},
{
xtype:'textareafield',
name:'message',
label:'Message'
}
]
},
{
items:[
{
xtype:'button',
text: 'Submit',
ui:'confirm',
handler: function(){
this.up('contactform').submit();
}
}
]
}
]
}
} );