标签: php nette
在不加载模板的情况下,在nette php框架中返回json字符串或简单文本的最佳方法是什么?
答案 0 :(得分:1)
您可以在演示者中使用方法sendJson($data)。
sendJson($data)
function renderDefault() { $data = ['hello' => 'world']; $this->sendJson($data); }
将使用{"hello":"world"} Content-Type
{"hello":"world"}
application/json