LCZ
LCZ
  • 发布:2020-07-09 15:47
  • 更新:2020-07-09 18:49
  • 阅读:679

#插件讨论# 【 httpserver - ican 】post如何接收

分类:uni-app

你好,请教一下,我在APP上起了httpServer
代码如下:

复制代码    export default {  
        data() {  
            return {  
                title: 'Hello',  
                hs: false,  
            }  
        },  
        onLoad() {  
            this.hs = uni.requireNativePlugin('YPL-httpserver');  
            this.hs.startServer({host:'192.168.0.58', port:9876},res => {  
                // 回调结果  
                console.log(res)  
            });  
            root:plus.io.convertLocalFileSystemURL("_www")  
            console.log(plus.io.convertLocalFileSystemURL("_www"))  
        },  
        onUnload() {  
            this.hs.stopServer();  
        },  
        methods: {  

        } // end of methods  
    }

打印结果如下:

复制代码15:43:14.603 应用【httpServerDemo】已启动...  
15:43:15.129 App Launch at App.vue:4  
15:43:15.154 App Show at App.vue:7  
15:43:15.832 /storage/emulated/0/Android/data/uni.UNI3B0E10C/apps/__UNI__3B0E10C/www/ at pages/index/index.vue:25  
15:43:15.855 [Object] {"start":true,"httpServer":{}}  at pages/index/index.vue:22

现在我要接收POST数据,要怎么弄?

2020-07-09 15:47 负责人:无 分享
已邀请:
ican

ican - 全栈开发

你好,目前插件提供静态网站的访问,对于在js中处理服务器请求的需要,下个版本增加

该问题目前已经被锁定, 无法添加新回复

  • 标题 / 粗斜体
  • 代码片段
  • 超链接 / 图片 / 视频
  • 列表 / 引用

文章内容较多时,可以用标题分段 :

## 大标题 
### 小标题

斜体 / 粗体 :

**粗体** 
*斜体*
***粗斜体***

代码片段 :

``` javascript
代码片段
```

超链接 :

[链接文字](链接地址) 例: [百度](http://www.baidu.com)

图片 :

![图片说明](图片地址) 例: ![百度logo](http://www.baidu.com/img/bdlogo.gif)

视频 :

!![视频说明](视频地址) 例: !![优酷视频](http://youku.com)

有序列表 :

1. 123
2. 123
3. 123

无序列表 :

- 123
- 123
- 123

引用 : ( 双回车后结束引用 )

> 引用内容
引用内容
引用内容