Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 wordpress 中使用 pjax。但是每当我尝试单击通过 ajax 调用获取内容的链接时,什么都没有发生并且页面加载正常,firebug 控制台显示 301 aborted error 。任何人都可以帮忙吗?
如果您在 wordpress 中使用 ajax,则在您的 theam 的 function.php 文件中执行操作,如下例所示
add_action('wp_ajax_do_ajax', 'our_ajax_function'); function our_ajax_function(){ // now we'll write what the server should do with our request here }
希望它会有所帮助:)