gpt4 book ai didi

javascript - 从外部函数调用 Image.getSize

转载 作者:行者123 更新时间:2023-11-30 19:28:15 25 4
gpt4 key购买 nike

我正在尝试从导出函数的通用 js 文件调用 Image.getSize,但出现错误

Cannot read property 'getSize' of undefined

似乎图像未定义。我如何定义它虽然从 react-navigation 导入图像可以解决问题但不幸的是没有。

我该如何解决这个错误?

imageFunctions.js

import { Image } from 'react-navigation';

module.exports = {

checkBlankImages(url){

Image.getSize(url, () => {
return "Pic is good"
},
() => {
return "Pic is not good"
}
)
}

}

HomePage.js

import React, {Component} from 'react';
export default class MatchesPage extends Component{

console.log(functions.checkBlankImages(url))

}

最佳答案

Image 是在 react-native 而不是 react-navigation 中定义的。将导入更改为:

import { Image } from 'react-native'

关于javascript - 从外部函数调用 Image.getSize,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56695565/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com