在sencha touch 2.0中使用Ext.Cookies类。 我做了以下事情:
Ext.util.Cookies.set('ci','some value);
然后:
Ext.util.Cookiesget('ci')
它工作正常!
但是当我输入其他参数时,例如domain,path,secure,例如:Ext.util.Cookies.set('ci','90f3ln8nBnXDQC666421==',null,'/','www.myapp.com',true);
get函数返回null ..为什么?