Tao Bocheng
Tao Bocheng
That's a good idea. But actually I am not quite familiar with js and development of node module so currently I haven't thought about that. Certainly if you are interested...
yes you are right. when dealing with some characters like Chinese, the generated flowchart may be in a shape that looks not so good due to some details about character...
我在 `import {MapView} from "react-native-baidu-map` 的时候会有这样的错误: >无法找到模块“react-native-baidu-map”的声明文件。“${myproject}/node_modules/react-native-baidu-map/index.js”隐式拥有 "any" 类型。Try `npm install @types/react-native-baidu-map` if it exists or add a new declaration (.d.ts) file containing `declare module 'react-native-baidu-map';`ts(7016)
我已经跑去用高德地图了(
同问这个bug咋解决(感激不尽
解决方法:在 `BaiduMapPackage.java` 文件中把 ```java @MainThread protected void init(ReactApplicationContext reactContext) { Looper.prepare(); SDKInitializer.initialize(reactContext.getApplicationContext()); } ``` 修改成 ```java @MainThread protected void init(ReactApplicationContext reactContext) { if (Looper.myLooper() == null) { Looper.prepare(); } SDKInitializer.initialize(reactContext.getApplicationContext());...
got help here, thx 1. 数据库指定时区:加在连接时的 url 之后 ``` jdbc:mysql://localhost:3306/ebook?serverTimezone=GMT%2B8 ``` 2. Jackson 注解指定时区:实体类定义时在 `@JsonFormat` 注解中加上 `timezone` 属性 ``` @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") private Timestamp date; ```