mockjax响应不起作用

时间:2016-11-14 10:07:34

标签: javascript jquery mockjax

我对理解mockjax有一些小问题。我有这个mockjax代码:

$.mockjax({
  url: "get_image.php",
  responseText:{
    hello: 'world'
  }  
});

什么应该是js代码来提醒' world'?也许这个?

$.getJson("url" , function(){
  alert(response.hello)
});

但这不起作用,请帮助我!

1 个答案:

答案 0 :(得分:0)

您忘记在函数中添加参数response

$.getJson("url" , function(response){
  alert(response.hello);
});

Read more about getJson()