美文网首页
发起网络请求

发起网络请求

作者: undefind33 | 来源:发表于2018-06-30 00:39 被阅读0次

    小程序网络请求

    data 数据说明:

    最终发送给服务器的数据是 String 类型,如果传入的 data 不是 String 类型,会被转换成 String 。转换规则如下:

    对于 GET 方法的数据,会将数据转换成 query string(encodeURIComponent(k)=encodeURIComponent(v)&encodeURIComponent(k)=encodeURIComponent(v)...)

    对于 POST 方法且 header['content-type'] 为 application/json 的数据,会对数据进行 JSON 序列化

    对于 POST 方法且 header['content-type'] 为 application/x-www-form-urlencoded 的数据,会将数据转换成 query string (encodeURIComponent(k)=encodeURIComponent(v)&encodeURIComponent(k)=encodeURIComponent(v)...)

    后台数据图片格式数据有问题  需将 \ 替换 /

    跳转到详情页并传值

    详情页请求数据

    相关文章

      网友评论

          本文标题:发起网络请求

          本文链接:https://www.haomeiwen.com/subject/xbyzyftx.html