-
Notifications
You must be signed in to change notification settings - Fork 141
< stream > 模块 #53
Comments
你好,直接使用示例代码后,会有错误 Can't find variable: stream,是什么原因呢? |
@tmyk104117 应该是没有引入stream组件吧,用require引入试试 |
官方没有说明stream模块组件具体在哪个组件里。使用npm install weex-module/stream是失败的。在npm中查找(https://www.npmjs.com/search?q=weex&page=1)是没有的。 |
var stream = require('@weex-module/stream'); |
stream可以支持https协议么? |
测试了一下,stream不会自动带cookie,有什么办法么? |
在IOS里stream请求的返回状态是status=-1 是什么原因? |
@coolMan2015 status 为 -1 应该是有出现错误,
具体,你可以把整个response jsonstr 打出来, 看下是为啥出错了, |
{"status":"-1",data:"unsupportedURL(-1002)","statusText":"ERR_INVALID_REQUEST"} |
这个文档能不能的详细点,这写的什么玩意 |
有没有人知道要是拿到数据之后怎么解析吗? |
文档写的太差了吧 |
返回的是一段JSON数据如上,如果成功取到了,data里就是你后台返回的内容 |
我想问一下,按照这个列子写了 ,为啥返回的是【object,object】,不是json串 |
stream.fetch({
|
太坑了 |
增加 headers 一直失败
|
stream.fetch({ |
me.getJsonpResult未定义@xiaomanzijia |
hi @xiaomanzijia 哪个平台报啥错了.. ,现在JSONP是支持的 |
iOS在控制台输出:stream.sendHttp is not a function. (In 'stream.sendHttp({ |
@tmyk104117 不好意思,该示例中的代码不全,应该先加入 |
@Lurkyli 支持https。 |
@colys Hi,目前暂时不支持 cookie,如果你需要在本地存储信息可通过 Storage module |
@jieshadow |
使用body传参然后浏览器就会报跨域访问错误,不使用body传参就没问题,到底要怎样传参?使用了body呗浏览器挡住了,然后status为-1,怎么回事?文档也不清楚 |
created:function () { 这个就不行,浏览器挡住了,显示什么:XMLHttpRequest cannot load http://apis.baidu.com/tngou/cook/show?id=29643. Request header field Content-Type is not allowed by Access-Control-Allow-Headers in preflight response. |
@acton393 求大神指教,res.status = -1,res.ok = falst,请问是什么原因?请求地址是:http://api.maoyan.com/mmdb/movie/v3/list/hot.json |
@lmh0921 你是 GET 请求,传参需要通过url传递。 |
本文档已迁移至 https://weex-project.io/cn/references/modules/stream.html ,此处不再维护,谢谢。 |
@acton393 POST请求服务器取不到参数,发现Stream.fetch采用的是直接将body变成字符串专递给服务器,而我们的服务器需要的像Jquery那个样的Ajax请求(&key=value)的形式,改怎么弄? |
本文档已迁移至 https://weex-project.io/cn/references/modules/stream.html ,此处不再维护,谢谢。
概述
以下为stream相关的API,用于实现网络请求。
API
fetch(options, callback[,progressCallback])
参数
GET
或是POST
.response
对象:json
和jsonp
,则它就是一个 object ,如果不是,则它就是一个 string 。state.'1':请求连接中
opened;'2':返回响应头中
received.;'3':正在加载返回数据
示例
The text was updated successfully, but these errors were encountered: