标签: javascript node.js express request response
我希望浏览器可以返回:
res.data; res.additionalObject; res.otherAdittionalObject; 等
res.data;
res.additionalObject;
res.otherAdittionalObject;
等
问题在于res.data是一个对象数组,如果直接在此对象数组中添加其他对象,则映射将更加困难。
如果可能,我宁愿在res.data对象之外创建其他对象。
我尝试过res.write(additionalObject); res.end() ;,但失败了。
res.write(additionalObject); res.end() ;
任何提示都会很棒,
谢谢。