我使用 sencha touch 2 作为我的一个手机应用程序的客户端,我使用 django-tastypie RESTFUL api 来处理客户端请求。现在我需要使用如下请求发送用户名/密码
域名/api/v1/entry/?format=jsonp&username=admin&password=admin&_dc=1336968929898&type=new&city=ABC&date=31-03-2012
下面是我的示例代码,
handler: function() {
Ext.Ajax.request({
url: 'http://domainaname/api/v1/entry/?format=jsonp&username=admin&password=admin',
method: 'GET',
withCredentials: true,
useDefaultXhrHeader: false,
params:{
type: 'new',
city: 'ABC',
date: '31-03-2012',
},
callback: function(response, successful) {
if (successful) {
Ext.Msg.alert('Success', 'We got yours');
} else {
Ext.Msg.alert('Fail', 'It didnt work!');
}
}
我不希望用户名/密码可见。
类型、城市、日期是查询的过滤选项
谢谢!