小编Ale*_*ini的帖子

反应母语-fbsdk错误:没有资源发现匹配给定的名称:ATTR"机器人:keyboardNavigationCluster"

在我的android/app/build.gradle中的 react-native项目中,我有

...
compileSdkVersion 26
    buildToolsVersion "26.0.1"

    defaultConfig {
        applicationId "..."
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        ndk {
            abiFilters "armeabi-v7a", "x86"
        }
    }

...

dependencies {
    compile project(':react-native-fbsdk')
    compile project(':react-native-vector-icons')
    compile project(':react-native-splash-screen')
    compile project(':react-native-spinkit')
    compile project(':react-native-orientation')
    compile project(':react-native-maps')
    compile project(':react-native-android-sms-listener')
    compile fileTree(dir: "libs", include: ["*.jar"])
    compile "com.android.support:appcompat-v7:26+"
    compile "com.android.support:design:26+"
    compile "com.android.support:recyclerview-v7:26+"
    compile "com.android.support:cardview-v7:26+"
    compile "com.facebook.react:react-native:+"  // From node_modules
    compile("com.crashlytics.sdk.android:crashlytics:2.8.0@aar") {
        transitive = true;
    }
}
...
Run Code Online (Sandbox Code Playgroud)

但我总是得到

<mypath> .../node_modules/react-native-fbsdk/android/build/intermediates/res/merged/release/values-v26/values-v26.xml:15:21-54: AAPT: No resource found that matches the …
Run Code Online (Sandbox Code Playgroud)

android-gradle-plugin react-native react-native-fbsdk

10
推荐指数
2
解决办法
8197
查看次数

如何使用socket(.io)从node.js服务器流式传输音频/视频到html5页面

我需要从node.js服务器流式传输mp3或mp4并在html5页面上观看它.我正在尝试使用socket.io来加速通信,我希望它会降低我使用简单http的延迟.我成立了socket.io在我的项目中,客户端(移动Web应用程序),并在服务器上,但我想不通,也不在网络上找到如何正确地发送数据,并导致标签.

video-streaming node.js socket.io

9
推荐指数
1
解决办法
5万
查看次数

ReactNative ScrollView滚动阈值

我想了解如何设置RN ScrollView的阈值.

这是因为如果在水平ScrollView中多个垂直可滚动视图,那么滚动视图非常困难.

所以我只需要保持水平滚动的东西,直到手指水平滑动某个像素跨度.

有没有人知道如何存档这个?

react-native react-native-scrollview

7
推荐指数
1
解决办法
435
查看次数

如何在一个突变中创建嵌套节点?

嗨,我试图在我的https://www.graph.cool/ db 上写一个带有变异的数据.我的项目是一个React web-app,我使用Apollo作为graphql客户端和graphql-tag npm包作为模板文字解析器.

问题是我不知道如何使用嵌套数据为正确的变异安排gql模板字符串.我的架构看起来像这样,例如,注意"公司"类型的字段"地址"是"地址"对象类型的数组.

type Company {
  name: String!
  website: String
  Owner: User
  Addresses: [Addresses]
}

type User {
  name: String!
  email: String
}

type Address {
  street: String!
  city: String!
  country: String
  contacts: [Contact]
}

type Contact {
  name: String
  email: String
  phone: String
}
Run Code Online (Sandbox Code Playgroud)

例如,我想在一个突变中同时创建一个新公司,它的新所有者和多个地址.对于我需要创建新联系人的地址.

graphql react-apollo graphcool apollo-client

5
推荐指数
1
解决办法
1520
查看次数

如何从 node.js 获取音频流?

我正在尝试从 node.js 服务器流式传输 mp3,但我无法接收任何数据,或者,如果我刷新我的客户端页面,我会收到一个跨源错误

我的服务器代码是这样的:

fs.readFile(path, function(error, file) {
    if (error) {
        response.writeHead(500, {"Content-Type": "text/plain"});
        response.write(error + "\n");
        response.end();
    } else {
        console.log('file ok');

        var stat = fs.statSync(path);
        var total = stat.size;
        console.log('video size: ' + total);
        var origin = (request.headers.origin || "*");
        if (request.headers['range']) {
            var range = request.headers.range;
            console.log('range: ' + range);
            var parts = range.replace(/bytes=/, "").split("-");
            console.log('parts: ' + parts);
            var partialstart = parts[0];
            console.log('partialstart: ' + partialstart);
            var partialend = parts[1];
            console.log('partialend: ' + partialend);

            var …
Run Code Online (Sandbox Code Playgroud)

javascript stream node.js

0
推荐指数
1
解决办法
6951
查看次数