douzhu3654 2013-02-18 19:40
浏览 29
已采纳

Ajax形式:后备造型

I have an Ajax form. Now I want to supply a solid fallback if the user has JavaScript deactivated.

So far it works also without JavaScript, but the user then simply sees the JSON string as a result printed on blank white without styling because of

echo json_encode( $arr );

How do I add styling to this? Do I have to echo a whole HTML page? Is it possible to enable a redirect for JS disabled or something?

The whole PHP bit looks like this:

if ( !empty( $invalidFieldArray ) ) {     
    // validation errors
    $arr = array( "status" => "error" , "data" => $invalidFieldArray );
    echo json_encode( $arr );      
} else {
    // all ok
    $arr = array( "status" => "success" );
    echo json_encode( $arr );
}
  • 写回答

2条回答 默认 最新

  • douying7289 2013-02-18 19:52
    关注

    HTML and AJAX

    You could use a different action URL in your <form> than the one used by AJAX. That way, you can have a normal working <form> fallback which outputs HTML.

    X-Requested-With

    Or, if you want to use only one URL for both methods, then you can have a look at the X-Requested-With header sent, and identify an AJAX request by checking it against the value XMLHttpRequest.

    if(strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
      /* It's AJAX */
    } else {
      /* HTML fallback */
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 阿里云python代码求解
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题
  • ¥20 RL+GNN解决人员排班问题时梯度消失
  • ¥15 统计大规模图中的完全子图问题
  • ¥15 使用LM2596制作降压电路,一个能运行,一个不能
  • ¥60 要数控稳压电源测试数据
  • ¥15 能帮我写下这个编程吗
  • ¥15 ikuai客户端l2tp协议链接报终止15信号和无法将p.p.p6转换为我的l2tp线路