Extjs4在跨域ajax(jsonp)ajax请求中设置Auth

时间:2012-04-24 15:31:03

标签: extjs4 cross-domain basic-authentication

我正在使用Extjs4,我的商店有问题。如何在我的代理配置中设置“基本身份验证”?这时当我加载我的应用程序时,我获得了一个登录获胜...我不想要...这里代码:

Ext.define('DigitalPaper.store.DirTree', {
extend: 'Ext.data.TreeStore',
model: 'DigitalPaper.model.DirTree',

proxy: {
    type: 'jsonp',
    url: alf_share_address+'proxy/alfresco/slingshot/doclib/treenode/node/alfresco/company/home/xxx',
    callbackKey: 'alf_callback',
    extraParams : {
        perms: false,
        children : false,
        max : 500,
        alf_ticket: alf_ticket
    },
    headers : { Authorization : "Basic "+Base64.encode('username:password')}
},

root: {
    text: 'Cartelle',
    id: 'src',
    expanded: true
}

});

0 个答案:

没有答案