flysec

Results 5 issues of flysec

建表的时候,如果用jq_createTable创建表,会先转为dict再去创建sql。 如果model里有pkid, 并且转后的dict里,pkid在最后的话,会从continue走掉,建表的括号无法闭合。生成的sql如下: CREATE TABLE device (pkid INTEGER PRIMARY KEY, udid TEXT, account_id INTEGER, server_id INTEGER, login_at INTEGER, 代码如下: NSMutableString *fieldStr = [[NSMutableString alloc] initWithFormat:@"CREATE TABLE %@ (pkid INTEGER PRIMARY...

不知道直接复制代码来用是否能支持osx? 希望能支持到osx开发 [!] The platform of the target `XXXServer` (macOS 10.13) is not compatible with `JQFMDB (1.1.6)`, which does not support `osx`.

Haven't remove commentsBarButtonItem from mutableLowerItems while checking commentsAreViewable. Please refer to the last line at source code below from EBPhotoPagesController.m solution: change [mutableUpperItems removeObject:self.commentsBarButtonItem]; to [mutableLowerItems removeObject:self.commentsBarButtonItem]; - (void)updateToolbarsWithPhotoAtIndex:(NSInteger)index {...

Hi, 这段代码的"pplication/x-www-form-urlencoded" 需要改成“application/x-www-form-urlencoded”,php才能收到post数据 public void OnHttpRequest(string pathAndQuery, byte[] body) { var localURL = new Uri(ConfigurationManager.AppSettings["LocalURL"]); var targetUrl = string.Format("{0}://{1}{2}", localURL.Scheme, localURL.Authority, pathAndQuery); this.WriteLog("转发数据到本地路径:" + targetUrl); try { var httpClient =...

小程序从首页切换到log页面,首先显示 “去往首页”,然后闪一下,刷新,继续显示完整内容 看了一下代码,可能是因为因为wx.reLaunch引起的,改成wx.navigateTo好了