节点介绍http请求On this pagehttp请求 tip用于实现请求http接口 配置说明 请求URL 通过return字符串实现url的灵活动态配置。 return _env.HOST + '/api/pay' 请求类型 http的请求method。 请求头headers 与URL配置同理,返回需要的headers return { 'token': _env.token, 'devceId':'110111'} body请求参数 与URL配置同理,返回需要的body return { 'a': _par.a, 'from':'logic'} 将response.data赋值给哪个参数