javascript - 世博相机拍照崩溃应用
<p><p>我目前在我的 iOS 应用程序中使用 expo 相机。 </p>
<p>当我尝试像这样保存图像时,应用程序崩溃了。</p>
<p></p><div class="snippet"data-lang="js"data-hide="false"data-console="true"data-babel="false">
<div class="snippet-code">
<pre class="snippet-code-js lang-js prettyprint-override"><code>takePicture = async function() {
this.camera.takePictureAsync().then(data => {
FileSystem.moveAsync({
from: data,
to: `${FileSystem.documentDirectory}photos/Photo_${this.state
.photoId}.jpg`,
}).then(() => {
this.setState({
photoId: this.state.photoId + 1,
});
Vibration.vibrate();
}).catch((err) => {
console.log("Error : " + err);
});
}).catch(error => {
console.log(error);
});
Vibration.vibrate();
console.log("Taking pic");
}</code></pre>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>对于您描述的第一个问题,尽管您通过将其保存到相机胶卷通过变通方法解决了它,但我建议您发布编辑后的代码以使问题正确更新。</p>
<p><strong>文件系统问题</strong></p>
<p>解决文件系统错误问题,原始代码应该可以正常工作,但您可以检查:</p>
<ol>
<li>如果 expo 应用具有适当的文件访问权限(应该通过 expo 库自动进行,但请尝试更新 expo 应用)。文件系统的文档可以在这里找到:<a href="https://docs.expo.io/versions/latest/sdk/filesystem.html" rel="noreferrer noopener nofollow">https://docs.expo.io/versions/latest/sdk/filesystem.html</a> </li>
<li>您可能需要创建中间目录(即照片):</li>
</ol>
<p>像这样:</p>
<pre><code>async componentDidMount() {
try {
await FileSystem.makeDirectoryAsync(
`${FileSystem.documentDirectory}photos`,
{
intermediates: true, // creates intermediate directories
}
)
} catch (e) {
console.log(e)
}
}
</code></pre>
<p><strong>振动问题</strong></p>
<p>振动问题可能是由 react-native 中的错误引起的,如下所述:<a href="https://github.com/facebook/react-native/issues/8955#issuecomment-353373616" rel="noreferrer noopener nofollow">https://github.com/facebook/react-native/issues/8955#issuecomment-353373616</a> </p>
<p>作为一种解决方法,您可以在设置状态之前振动,即:</p>
<pre><code>takePicture = async function() {
if (this.camera) {
const picture = await this.camera.takePictureAsync();
const pictureFile = await FileSystem.moveAsync(
{
from: picture.uri,
to: `${
FileSystem.documentDirectory
}photos/Photo_${this.state.photoId}.jpg`
}
).catch(err => console.error(err));
Vibration.vibrate();
console.log("Pic taken", this.state.photoId);
return this.setState({
photoId: this.state.photoId + 1
});
}
};
</code></pre></p>
<p style="font-size: 20px;">关于javascript - 世博相机拍照崩溃应用,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/46875578/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/46875578/
</a>
</p>
页:
[1]