请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

11章4, 选择视频 点确定后报错

正在回答

插入代码

7回答

Scott 2016-11-14 22:51:54

把按钮换成一般的 touchableopacity 组件试试,不要用第三方的这个 button

0 回复 有任何疑惑可以回复我~
  • 提问者 maBi99 #1
    一直是使用 touchableopacity
    回复 有任何疑惑可以回复我~ 2016-11-19 09:57:52
  • 提问者 maBi99 #2
    非常感谢!
    回复 有任何疑惑可以回复我~ 2016-11-29 10:24:30
Scott 2016-11-25 23:02:33

把这句

var uri = res.uri

换成

var uri = res.uri.replace('file://', '')

试试


或者换成 var uri = res.path 试试

0 回复 有任何疑惑可以回复我~
Scott 2016-11-25 13:28:55

我也没看出来哪里有错误呢,你把 Render 方法里面的代码,逐块逐块删掉,分别测测看,一直删到只剩下最外层的 View,看看是哪一段代码,删掉后就不报错,不删掉就报错,然后就从这段找你进去,尽量的定位到是哪几行代码导致出问题了。


如果还是定位不到,可以跟着补录课程这一章,把版本,代码都按照我升级的方式,跟进一下,再试试看

0 回复 有任何疑惑可以回复我~
  • 提问者 maBi99 #1
    277行:source={{uri: this.state.previewVideo}}  删除这个可以,uri consolg出来是路径,报错是cource不是string类型.过程是: 选择完视频,视频的路径会存到uri里,然后video组件读取uri路径 加载视频的时候报错 uri不是string类型
    回复 有任何疑惑可以回复我~ 2016-11-25 14:27:04
Scott 2016-11-19 21:30:52

把源代码贴一下看看


0 回复 有任何疑惑可以回复我~
  • 提问者 maBi99 #1
    老师早上好,由于这几天在忙公司的事情.回复晚了
    回复 有任何疑惑可以回复我~ 2016-11-24 09:13:31
  • 提问者 maBi99 #2
    应该是 previewVideo 这个状态有问题,渲染时变成布尔类型,后面写入res.uri路径的类型是文本,所以类型不对,但是我把previewVideo 设成初始文本类型会提示很多警告. 我的rn是0.35
    回复 有任何疑惑可以回复我~ 2016-11-24 10:10:25
  • 提问者 maBi99 #3
    应该要再建多个状态,另外储存被选择视频的uri路径
    回复 有任何疑惑可以回复我~ 2016-11-24 10:11:25
提问者 maBi99 2016-11-26 09:43:13

问题已经解决: 是Video组件的引入方式不对.  正确如下: var Video = require('react-native-video').default

1 回复 有任何疑惑可以回复我~
提问者 maBi99 2016-11-24 11:10:24

是video组件 读取res.uri路径后将要播放已选择的视频 这里有问题

0 回复 有任何疑惑可以回复我~
提问者 maBi99 2016-11-24 09:11:55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
import React, { Component } from 'react';
import {
  AppRegistry,
  StyleSheet,
  Text,
  View,
  TouchableOpacity,
  Image,
  Dimensions,
  Video,
  AsyncStorage,
  ProgressViewIOS
} from 'react-native';
import Icoan from 'react-native-vector-icons/Ionicons';
var ImagePicker = require('NativeModules').ImagePickerManager
 
var width = Dimensions.get('window').width
var height = Dimensions.get('window').height
var request = require('../common/request')
var config = require('../common/config')
 
var videoOptions = {
  title: '选择视频',
  cancelButtonTitle: '取消',
  takePhotoButtonTitle: '录制 10 秒视频',
  chooseFromLibraryButtonTitle: '选择已有视频',
  videoQuality: 'medium',
  mediaType: 'video',
  durationLimit: 10, //视频长度
  noData: false,
  storageOptions: {
    skipBackup: true,
    path: 'images'
  }
}
 
var Edit = React.createClass ({
  getInitialState(){
   var user = this.props.user || {}
    return {
      user: user,
      previewVideo: null,
 
      //video loads
      videoOk: true,
      videoLoaded: false,
      videoUploaded: false,
      videoUploading: false,
      playing: false,
      paused: false,
      videoProgress: 0.01,
      videoUploadedProgress: 0.11,
      videoTotal: 0,
      currentTime: 0,
 
      //video player
      rate: 1,
      muted: true,
      resizeMode: 'contain',
      repeat: false
    }
  },
 
  _onLoadStart(){
    console.log('onLoadStart')
  },
 
  _onLoad(){
    console.log('onLoad')
  },
 
  _onProgress(data){
    if (!this.state.videoLoaded){
      this.setState({
        videoLoaded: true
      })
    }
 
    var duration = data.playableDuration
    var currentTime = data.currentTime
    var percent = Number((currentTime / duration).toFixed(2))
    var newState = {
        videoTotal: duration,
        currentTime: Number(data.currentTime.toFixed(2)),
        videoProgress: percent
    }
 
    if (!this.state.videoLoaded) {
      newState.videoLoaded = true
    }
    if (!this.state.playing) {
      newState.playing = true
    }
    this.setState(newState)
  },
 
  _onEnd(){
    this.setState({
      videoProgress: 1,
      playing: false
    })
  },
 
  _onError(){
    this.setState({
      videoOk: false
    })
  },
 
  _rePlay(){
    this.refs.videoPlayer.seek(0)
  },
 
  _pause(){
    if (!this.state.paused) {
      this.setState({
        paused: true
      })
    }
  },
 
  _resume(){
    if (this.state.paused) {
      this.setState({
        paused: false
      })
    }
  },
 
  _getQiniuToken(){
    var accessToken = this.state.user.accessToken
    var signatureURL = config.api.base + config.api.signature
    return request.post(signatureURL, {
      accessToken: accessToken,
      type: 'video',
      cloud: 'qiniu'
    })
    .catch((err) => {
      console.log(err)
    })
  },
 
  _upload(body){
    var that = this
    var xhr = new XMLHttpRequest()
    var url = config.qiniu.upload
 
    console.log(body)
 
    this.setState({
      videoUploading: true,
      videoUploaded: false,
      videoUploadedProgress: 0
    })
    xhr.open('POST',url)
    xhr.onload = () => {
      if (xhr.status !== 200) {
        AlertIOS.alert('请求失败')
        console.log(xhr.responseText)
 
        return
      }
      if (!xhr.responseText){
        AlertIOS.alert('请求失败2')
        return
      }
      var response
 
      try{
        response = JSON.parse(xhr.response)
      }
      catch (e) {
        console.log(e)
        console.log('parse fails')
      }
 
      console.log(response)
      if (response){
        that.setState({
          video: response,
          videoUploading: false,
          videoUploaded: true
        })
      }
    }
    if (xhr.upload){
      xhr.upload.onprogress = (event) => {
        if (event.lengthComputable){
          var percent = Number((event.loaded / event.total).toFixed(2))
          that.setState({
            videoUploadedProgress: percent
          })
        }
      }
    }
    xhr.send(body)
  },
 
 
  _pickVideo(){
    var that = this
 
    ImagePicker.showImagePicker(videoOptions, (res) => {
        if (res.didCancel) {
          return
        }
 
        var uri = res.uri
        that.setState({
          previewVideo: uri
        })
        that._getQiniuToken()
          .then((data) => {
              if (data && data.success) {
                var token = data.data.token
                var key = data.data.key
                var body = new FormData()
 
                body.append('token', token)
                body.append('key', key)
                body.append('file', {
                  type: 'video/mp4',
                  uri: uri,
                  name: key
                })
 
                that._upload(body)
              }
          })
      })
  },
 
_edit() {
  this.setState({
    modalVisible: true
  })
},
 
_closeModal(){
  this.setState({
    modalVisible: false
  })
},
 
componentDidMount(){
  var that = this
  AsyncStorage.getItem('user')
  .then((data) => {
    var user
    if (data){
      var user = JSON.parse(data)
    }
    if (user && user.accessToken){
      that.setState({
        user: user
      })
    }
  })
},
 
  render: function(){
    return (
      <View style={styles.container}>
        <View style={styles.toolbar}>
          <Text style={styles.toolbarTitle}>
           {this.state.previewVideo ? '点击按钮配音' '理解狗狗 从配音开始'}
          </Text>
         <Text style={styles.toolbarExtra} onPress={this._pickVideo}>更换视频</Text>
       </View>
       <View style={styles.page}>
         {
           this.state.previewVideo
              ? <View style={styles.videoContainer}>
                  <View style={styles.videoBox}>
                    <Video
                       ref='videoPlayer'
                       source={{uri: this.state.previewVideo}}
                       style={styles.video}
                       volume={5}
                       paused={this.state.paused}
                       rate={this.state.rate}
                       muted={this.state.muted}
                       resizeMode={this.state.resizeMode}
                       repeat={this.state.repeat}
 
                       onLoadStart={this._onLoadStart}
                       onLoad={this._onLoad}
                       onProgress={this._onProgress}
                       onEnd={this._onEnd}
                       onError={this._onError}  />
                       {
                         !this.state.videoUploaded && this.state.videoUploading
                         ? <View style={styles.progressTipBox}>
                             <ProgressViewIOS
                                   style={styles.progressBar}
                                   progressTintColor='#ee735c'
                                   progress={this.state.videoUploadedProgress}/>
                                   <Text style={styles.progressTip}>
                                     正在生成静音视频,已完成 {(this.state.videoUploadedProgress * 100).toFixed(2)}%
                                   </Text>
                           </View>
                         null
                       }
                  </View>
                </View>
              : <TouchableOpacity
                    style={styles.uploadContainer}
                    onPress={this._pickVideo}>
                    <View style={styles.uploadBox}>
                     <Image source={require('../assets/images/record.png')}
                            style={styles.uploadIcon}/>
                      <Text style={styles.uploadTitle}>点我上传视频</Text>
                      <Text style={styles.uploadDesc}>建议时长不超过20秒</Text>
                    </View>
                </TouchableOpacity>
              }
        </View>
      </View>
    )
  }
})
 
var styles = StyleSheet.create({
  container: {
    flex: 1,
  },
  toolbar:{
    flexDirection: 'row',
    paddingTop: 25,
    paddingBottom: 12,
    backgroundColor: '#ee735c',
  },
  toolbarTitle:{
    flex: 1,
    fontSize: 16,
    color: '#fff',
    textAlign: 'center',
    fontWeight: '600',
  },
  toolbarExtra:{
    position: 'absolute',
    right: 10,
    top: 26,
    color: '#fff',
    textAlign: 'right',
    fontWeight: '600',
    fontSize: 14,
  },
  page:{
    flex: 1,
    alignItems: 'center',
  },
  uploadContainer:{
    marginTop: 90,
    width: width - 40,
    paddingBottom: 10,
    borderWidth: 1,
    borderColor: '#ee735c',
    justifyContent: 'center',
    borderRadius: 6,
    backgroundColor: '#fff',
  },
  uploadTitle:{
    marginBottom: 10,
    textAlign: 'center',
    fontSize: 16,
    color: '#000',
  },
  uploadDesc:{
    color: '#999',
    textAlign: 'center',
    fontSize: 12,
  },
  uploadIcon:{
    width: 110,
    resizeMode: 'contain'
  },
  uploadBox:{
    flex: 1,
    flexDirection: 'column',
    justifyContent: 'center',
    alignItems: 'center'
  },
  videoContainer:{
    width: width,
    justifyContent: 'center',
    alignItems: 'flex-start',
  },
  videoBox:{
    width:width,
    height:height * 0.6,
  },
  video:{
    width: width,
    height: height * 0.6,
    backgroundColor: '#333'
  },
  progressTipBox:{
    width: width,
    height: 30,
    backgroundColor: 'rgba(244,244,244,0.65)'
  },
  progressTip:{
    color: '#333',
    width: width - 10,
    padding: 5
  },
  progressBar:{
    width: width
  }
});
 
module.exports = Edit


0 回复 有任何疑惑可以回复我~
问题已解决,确定采纳
还有疑问,暂不采纳
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号