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.
在不加载模板的情况下,在 nette php 框架中返回 json 字符串或屏幕上的简单文本的最佳方法是什么?
您可以sendJson($data)在演示者中使用方法。
sendJson($data)
function renderDefault() { $data = ['hello' => 'world']; $this->sendJson($data); }
{"hello":"world"}将输出application/jsonContent-Type
{"hello":"world"}
application/json