2

我正在使用 Sencha Touch 2 编写一个应用程序,它在从 Web 访问时工作得很好。当我为 iPhone 构建它并将 url 从本地 url (../services/myservice.php) 更改为远程 url (http://remoteurl.com/services/myservice.php) 时出现了问题

我开始收到跨域错误:

**XMLHttpRequest cannot load http://example.com/services/userRegister.php?_dc=1336972603884. Origin http://localhost is not allowed by Access-Control-Allow-Origin.**

还有想问一下有没有办法使用jsonp提交表单,所以我没有这个问题了。

这是我的表单代码:

Ext.define('RegistroMovil.view.Register',{
extend: 'Ext.form.Panel',
xtype: 'register',
requires:[
    'Ext.form.FieldSet',
    'Ext.form.Email'
],
config: {
    title: 'Register',
    iconCls: 'user',
    url: 'http://example.com/proys/congreso/services/userRegister.php',
    items: [
    ...

以及提交表单的按钮代码:

{
            xtype: 'button',
            text: 'Register',
            handler: function(){
                this.up('register').submit({
                    success: function(f, a){
                        alert('Your id: ' + a.id);
                        f.reset();
                    }
                });
            }
        },

非常感谢你!

4

1 回答 1

1

由于跨域资源共享策略,您收到上述错误。

在按钮的tap事件处理程序上submit,您可以使用 anExt.Ajax.request();但我觉得这也会导致您遇到相同的错误。

例如

Ext.Ajax.request({
  values : paramValues // values from form fields..
  url: '.../test.php',

  success: function(response) {
    console.log(response.responseText);
  }

  failure: function(response) {
    console.log(response.responseText);
  }
});

所以,最好写一个Ext.util.JSONP.request()来处理表单submit

请注意,如果您要从与运行页面的原始域不同的域中的页面检索数据,则必须使用此类,因为相同的原始策略。

例如

Ext.util.JSONP.request({
      params: paramValues // values from form fields..
      url: '.../test.php',
      callbackKey: 'callback',
      scope: 'this',
      success: function(response) {
        console.log(response.responseText);
      }

      failure: function(response) {
        console.log(response.responseText);
      }
});
于 2012-05-14T05:09:17.487 回答