我是一名 PHP 开发人员,但正在过渡到 Java。(此时对 Java 非常陌生)
有没有办法对 Servlet 进行 ajax 调用,并以单独的 .jsp 文件的输出进行响应(而不是直接在 Servlet 中创建的 html 或 json)?
这是一个使用 Zend 框架的常见做法的示例,如果可能的话,我想用 Java 来做这件事:
public function myAjaxCallAction(){
$this->view->someVar = 'whatever';
$this->view->hello = 'world';
$output = $this->view->render('someViewScript.phtml'); // the above vars are in this view
echo $output;
}
再次对 java 非常陌生,任何与这种情况有关的建议将不胜感激!