如何解决index.js:9 Uncaught TypeError:无法读取未定义的属性“ setWallpaper”?

时间:2020-03-29 15:36:14

标签: javascript react-native

你好,我是新来的本地用户,从墙纸应用程序开始。我正在使用react-native-wallpaper-manager来构建应用程序, 我遇到以下错误:

index.js:9未捕获的TypeError:无法读取未定义的属性'setWallpaper'

index.js

var  NativeModules = require('react-native');
var Image  = require('react-native');

module.exports = {
setWallpaper: (source,callback = (res)=>{
    console.log(res);
}) =>{
    NativeModules.WallPaperManager.setWallpaper(Image.resolveAssetSource(source),callback);
 }
 } ;

App.js

 WallPaperManager.setWallpaper({uri: 'img_link', screen: 'both/home/lockscreen'}, (res)=> console.log(res));

请帮助我解决此错误。

1 个答案:

答案 0 :(得分:0)