从服务器验证模型ajax无法正常工作

时间:2013-11-24 12:40:31

标签: javascript backbone.js

     var Model=  Backbone.Model.extend({
                url: "server.php",
                name:'sasha',
                time:'now',
                validate:function(attrs, options) {

     if (attrs.rand >2) {
      console.log('stop');
      debugger;
    }
                 }
            })

            var model=new Model;



model.on("invalid", function(model, error) {
  console.log('invalid');
  debugger
});

   setInterval(function(){         
      model.fetch();
     model.save()
  },4000
);

我想过滤来自服务器的数据。 我有服务器:

$arr = array('a' => 1, 'time' =>date('h:m:s'),rand=>rand()*9);

echo json_encode($arr);

萤火虫没有错误!

0 个答案:

没有答案