jQ 中 ajax 及其配置参数

  1. $.ajax({
  2. url: 'data/product.json', // 接口地址
  3. method: 'GET', // http method
  4. dataType: 'json', // 数据类型为 JSON
  5. async: false, // 异步与否,默认异步
  6. cache: false, // 是否设置缓存 true 表示缓存,falas 表示不缓存;一般设为 false
  7. success: function (result) { // 如果请求成功执行的操作
  8. console.log(result);
  9. },
  10. error: function (err) { // 如果失败,需要进行的操作
  11. console.log(err);
  12. }
  13. });
  • $.ajax() 是通过 $ 调用的,说明 ajax 方法是定义在 jQuery 自身上的,而 css,html,animate 等都是定义在 jQ 原型上的方法。