smoothdvd
smoothdvd
> > Hi @smoothdvd can you add some more context for why you would need this? > > it gives some flexibility in removing the random string we add onto...
@alexandrebodin if call the generic generateFileName, we need export this function in [upload.js](https://github.com/strapi/strapi/blob/main/packages/core/upload/server/services/upload.js), is it right?
Get answer: With new react-native, should: ``` import { ..., findNodeHandle, ..., } from 'react-native'; ... UIManager.dispatchViewManagerCommand( findNodeHandle(this.refs["baiduMap"]), UIManager.RCTBaiduMap.Commands.zoomToLocs, [locs] ); ... ```
I use file:// to link plugin dependency has no this issue. I only use --shamefully-hoist option to install.
@Thisisjuke How do you resolve this problem? Input field shows "Not support"? CategroyIds is a PostgreSQL column, which type is integer array.
I patched the @strapi/database package with add type 'raw', then I can get raw value returned by pg. ``` diff --git a/node_modules/@strapi/database/lib/fields/index.js b/node_modules/@strapi/database/lib/fields/index.js index 897fa91..8bdc9d6 100644 --- a/node_modules/@strapi/database/lib/fields/index.js +++ b/node_modules/@strapi/database/lib/fields/index.js...
h5 环境下需要添加节点且渲染完成后才能正确创建上下文: Taro.createCanvasContext('measureText')
Thanks! So I need use PaperFoldNavigationController?
I want to use full screen's width for right view, now I found a white line at most of left. So, I set width to screen's width + 1 pixel...
PaperFold-ContainmentView, my code ``` // Add root view controller RootViewController *rootViewController = [[RootViewController alloc] initWithNibName:nil bundle:nil]; UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:rootViewController]; navigationController.navigationBar.hidden = YES; self.paperFoldNavigationController = [[PaperFoldNavigationController alloc] initWithRootViewController:navigationController];...