我通过react native制作了webview方法。
使用'expo-cli'可以很好地加载webview主页。
但是问题是我的设备的横向浏览模式无法旋转Web视图。
我怎么解决这个问题?非常感谢。
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { WebView } from 'react-native';
export default function App() {
return <WebView source={{ uri: 'http://111.111.111.111/web' }} />;
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center'
}
});
答案 0 :(得分:1)
您应该检查
exports.recordPush = function (mainObject, callback) {
session.run(
"WITH $main_object_ as mainObject " +
"MATCH (p:Patient {puid: mainObject.puid }) " +
"CREATE (rec:Record {ruid: mainObject.ruid}) " +
"CREATE (p)-[r:Suffer]->(rec)",
{
main_object_: mainObject,
}
).then(function (result) {
console.log('saved for ' + mainObject.puid);
callback(null, result);
}).catch((err) => {
callback(err, null);
});
}
文件。默认情况下,使用Expo创建的空白应用程序的值为app.json
。您可以将其更改为orientation: portrait
。
博览会文档:https://docs.expo.io/versions/latest/workflow/configuration/#orientation