所以我试图从我的控制器发回 xml ..
render xml: ['hello world']
正确地给了我:
<?xml version="1.0" encoding="UTF-8"?>
<strings type="array">
<string>hello world</string>
</strings>
然而
render xml: 'hello world'
给出 xml 标头,但正文只是:
hello world
这不是xml格式。
漏洞?