0

我使用 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!');
        }
    }

我不希望用户名/密码可见。

类型、城市、日期是查询的过滤选项

谢谢!

4

1 回答 1

0

只需更改method类型

'GET' -> 'POST'

然后以下列方式发送您的usernamepassword..

.....
params: {
   username: Ext.getCmp('userId').getValue(),
   password: Ext.getCmp('userPswdId').getValue()
},
.....
于 2012-05-14T06:40:20.433 回答