简体   繁体   中英

mockjax response not working

I have some little problem with understanding mockjax. I have this mockjax code:

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

What should be js code to alert 'world'? Maybe this?

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

But this is not working, please help me!

You forgot to add argument response in function.

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

Read more about getJson()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM