用mui ajax调用webserver的时候 总是抛出异常 提示abort

前台代码

    mui.ajax('http://192.168.0.100:8080/Webservice/Service1.asmx/test1', {
                        data: {
                            v1: '2017',
                            v2: '财',
                            v3: '钱'
                        },
                    //  dataType: 'text', //服务器返回json格式数据
                        type: 'post', //HTTP请求类型
                        timeout: 3000, //超时时间设置为10秒;
                        headers: {
                            'Content-Type': 'application/json'
                        },
                        success: function(data) {
                            //服务器返回响应,根据响应结果,分析是否登录成功;
                        },
                        error: function(xhr, type, errorThrown) {
                            //异常处理;
                                console.log(type);
                                mui.toast('连接失败')
                                 mui.toast(type)
                        }
                    });
                });
            });

webserver 代码

    [WebMethod]
        public  string test1(string v1,string v2,string v3)
       {
           return string.Format("祝你在{0}里 发大{1} 挣大{2}",v1,v2,v3);
       }

为什么总是报错呢 在手机上调试的时候

  <webServices>
      <protocols>
        <add name="HttpPost"/>
        <add name="HttpGet"/>
      </protocols>
    </webServices>

web.config中的也加了

按照下面的格式测试一下

mui.ajax({
    url: '',
    type: 'post',
    headers: {
        'Content-Type': 'application/json'
    },
    processData: false,
    data: JSON.stringify({
       v1: '2017',
       v2: '财',
       v3: '钱'
    }),
    success: function(data) {
        console.log(data);
    },
    error: function(xhr, type, errorThrown) {
        console.log(type);
    }
});

把html中的form去掉就可以了