Tag: 位置

PHP标题(位置:…):强制地址栏中的URL更改

我目前正在使用带有数据库的PHP会话进行身份validation的移动网站上工作。 我有一个login页面,表单上提交到server_login.php 。 PHP文件然后创build一些会话数据(存储在$ _SESSION中),并将用户redirect回索引页面: header("location:../../index.php"); 新的网页(index.php)正确加载; 但是,当标题redirect页面时,地址栏中的URL不会更改; 它停留在* http://localhost/php/server/server_login.php*而不是http://localhost/index.php ,因此我所有使用相对path的其他资源都无法加载。 就好像网页仍然认为它位于/ php / server而不是/。 奇怪的是,我在logout.php中使用header(“location:…”),并且使用URL更改成功redirect页面。 我已经确定,在我的* server_login.php *中没有输出在头redirect之前(上面只是mysql调用检查),我也使用了ob_start()和ob_end_flush()。 有没有强制地址栏上的URL的任何方法改变(并因此希望解决相对path问题)? 还是我做错了什么? P / S:我正在使用jQuery Mobile。 编辑:这是我的代码redirect,不改变url: // some other stuff not shown $sql = "SELECT * FROM $user_table WHERE email = '$myemail' AND password = '$mypassword'"; $login_result = mysql_query($sql, $connection); $count = mysql_num_rows($login_result); if ($count […]

Android:如何获得准确的高度?

我只需要使用GPS进行精确的高度测量。 我尝试了Location.getAltitude(),但这是非常不准确的。 有什么build议?

什么是从正常stream程中获取元素的CSS属性?

什么是从正常stream程中获取元素的CSS属性? 这些属性将是浮动的,位置:绝对等 这个问题涉及正常stream量的所有可能的变化。

如何使用CoreLocationfind您的当前位置

我需要find我的CoreLocation当前位置,我尝试了多种方法,但到目前为止,我的CLLocationManager只返回0 ..( 0.000.00.000 )。 这是我的代码( 更新到工作 ): import : #import <CoreLocation/CoreLocation.h> 宣布 : IBOutlet CLLocationManager *locationManager; IBOutlet UILabel *latLabel; IBOutlet UILabel *longLabel; function : – (void)getLocation { //Called when needed latLabel.text = [NSString stringWithFormat:@"%f", locationManager.location.coordinate.latitude]; longLabel.text = [NSString stringWithFormat:@"%f", locationManager.location.coordinate.longitude]; } – (void)viewDidLoad { locationManager = [[CLLocationManager alloc] init]; locationManager.distanceFilter = kCLDistanceFilterNone; // whenever we […]

如何抖动文本,以避免在ggplot2 scatterplot重叠?

我想在ggplot2中创build一个干净的文本标签散点图。 目标是视觉上呈现与大约25个项目相关的不断增加的价值。 我已经在使用“position_jitter”,但我想知道我能做得更好。 这里是一些模拟数据: title <- rep("A Really Rather Long Text Label", 25) value <- runif(25, 1,10) spacing <- seq(1:25) df <- data.frame(title, value, spacing, stringsAsFactors = FALSE) 这里是生成图的代码: library(ggplot2) myplot <- ggplot(data=df, aes(x=spacing, y=value, label = title)) + geom_text(aes(colour = value), size = 2.5, fontface = "bold", vjust = 0, position = position_jitter(width=5, height=0)) […]

angularJS – 从鼠标点击div中获取x和y的位置

我做了一个函数,应该添加一个项目,我点击一个div内的位置。 现在这个函数的问题是,每次我点击,它都需要文档的x和y位置,而不是div内的x和y位置。 所以我真正想要的是,我的div的左上angular应该给x = 0&y = 0,但我不知道这是可能的吗? 我想还有另一种方法可以做到这一点.. $scope.addOnClick = function(event) { $scope.items.push( { "label": "Click", "value": 100, "x": event.x-50, "y": event.y-50, }) }

jQuery UI对话框没有定位中心屏幕

我有一个jQuery对话框,旨在位于屏幕中间。 但是,它似乎有点偏离中心垂直。 这里是代码: $('#add_box').dialog({ autoOpen: true, width: 300, modal: true, resizable: false, bgiframe:true }); 任何想法,为什么这不会中心?

将parent上的wrap_content和child上的fill_parent结合起来

将线性布局的两个或多个元素设置为相同的高度似乎是一个很大的问题。 我想在同一个高度上设置四个button。 android:layout_height =“wrap_content”暂时这样做,但是当其中一个button上的文本超过一行时,这个button会增加,因此比其他的更大。 由于不同的本地化我不知道,何时和哪个button可能有第二行。 所以我的想法是, 将父元素layout设置为android:layout_height =“wrap_content”和所有(!)子元素高度为android:layout_height =“fill_parent” 。 这工作(所有button都有相同的大小),但我不知道这是否导致任何其他问题? 因为它的父母得到它从孩子的高度,反之亦然。

确定事件之外的鼠标位置(使用jQuery)?

我需要像本教程中那样使用(最好是)jQuery获取绝对的鼠标位置/坐标(X和Y),但不包含任何JavaScript事件。 谢谢。

在后台服务中使用Google Play服务LocationClient

我的应用程序旨在定期跟踪用户的位置,并将其发送到服务器,最近我改变了我的代码与谷歌播放服务的位置API。 我创build了locationClient并连接到onStartCommand中的服务 public int onStartCommand(Intent intent, int flags, int startId) { setUpLocationClientIfNeeded(); if(!mLocationClient.isConnected() || !mLocationClient.isConnecting()) mLocationClient.connect(); return START_STICKY; } 并在onConnected方法中,我发送一个位置请求, @Override public void onConnected(Bundle arg0) { System.out.println("Connected …"); mLocationClient.requestLocationUpdates(REQUEST, this); } REQUEST对象是, private static final LocationRequest REQUEST = LocationRequest.create() .setInterval(5*60*1000) // 5 minutes .setFastestInterval(3*60*1000) // 3 minutes .setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY); 现在的问题是, onLocationChanged方法不会以给定的时间间隔(即5分钟或最快的间隔3分钟)被调用。 从日志中我可以看到,它只被调用两次或三次之后,根本没有被调用(我在1小时后检查)。 我的上面的代码是什么问题? (我也看不到任何“断开连接”的日志) 为了解决这个问题,我试图用alarmmanager来定期调用这个任务。 现在,如何通过来自广播接收机的Locationclient获取单个位置更新。 […]