我正在使用Phonegap进行我的第一次实验。我想构建一个从MySql服务器检索数据的应用程序,但似乎问题是我无法连接到我的dB。
当我建立网站时,这很容易。我使用PHP和以下代码:
$conn = new mysqli($servername, $username, $password);
其中$servername
为localhost
但使用Phonegap localhost
当然不会有效,所以我必须使用hostname
或IP address
。
这就是问题所在。我有一个带IP的VPS,主机名是,假设 vps.my-domain.com 。两者都不会让我访问MySql数据库,我不明白为什么。
以下字符串报告:
'SQLSTATE [HY000] [2005]未知的MySQL服务器主机'vps.my-domain.com:3306'(20)'
$conn = new mysqli("xxx.yy.kkk.qqq", $username, $password);
$conn = new mysqli("vps.my-domain.com", $username, $password);
我的代码(HTML + Jquery + Ajax + PHP)在我的VPS上运行时工作正常并且我使用localhost
但是当我使用IP address
或hostname
时它失败了。
我也试过了mySQLjs:
MySql.Execute(
"http://xxx.yy.kkk.qqq",
"username",
"password",
"phonegap",
"select * from test",
function (data) {
console.log(data)
});
但仍然没有成功。
我在mySQLjs找到的演示代码工作正常,所以我很确定我错过了关于我的连接的事情。
如何使用IP address
或hostname
而不是localhost
访问我的MySql数据库?是否应该在我的VPS上设置配置?
答案 0 :(得分:0)
<强>解决强>
经过许多传统操作后,我一直在努力。
默认情况下,出于安全原因,禁用对MySQL数据库服务器的远程访问。
1-您需要编辑MySQL配置文件,并允许从不同于localhost的来源进行访问。
nano /etc/mysql/my.cnf
2-将行bind-address
更改为:
bind-address = your_ip_number i.e. bind-address = xxx.yy.qqq.tt
3-重启MySQL:
/etc/init.d/mysql restart
4-使用PHPMyAdmin创建一个用户,该主机是您的IP地址,因此它看起来像:
phonegap@your_ip_number
下面是代码(HTML + PHP + CONFIG.XML)
<强> HTML 强>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Fetch MySQL data into Phonegap app</title>
<script src="jquery.min.js"></script>
<script src="phonegap.js"></script> <!-- When you build the app with build.phonegap.com remove the phonegap.js file from the package you are going to upload but keep its reference -->
</head>
<body>
HELLO WORLD!
<div id="output"></div>
<script>
$(document).ready(function($){
var output = $('#output');
$.ajax({
url: 'http://your_domain.com/get.php', // FULL PATH!
dataType: 'jsonp',
jsonp: 'jsoncallback',
timeout: 3000,
success: function(data, status){
$.each(data, function(i,item){
var landmark = '<h1>'+item.title+'</h1>'
+ '<p>'+item.description+'<br>'
+ item.url+'</p>';
output.append(landmark);
});
},
error: function(){
output.text('There was an error loading the data.');
}
});
});
</script>
</body>
<强> PHP 强>
<?php
header("Access-Control-Allow-Origin: *");
$db_username = 'the_user_you_created';
$db_password = 'the_password';
$db_name = 'the_db_name';
$db_host = 'your_ip_number';
$mysqli = new mysqli($db_host, $db_username, $db_password, $db_name);
if ($mysqli->connect_error) {
die('Error : ('. $mysqli->connect_errno .') '. $mysqli->connect_error);
}
// Run the query and fetch the data. $html contains the result
// Convert it to JSON and remember to add the 'jsoncallback' string
echo $_GET['jsoncallback'] . '(' . json_encode($html) . ');';
?>
CONFIG.XML 这是Phonegap的配置文件
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.phonegap.example"
versionCode = "10"
version = "1.0.0" >
<!-- versionCode is optional and Android only -->
<name>Your app</name>
<description>
My first MySql connection with Phonegap
</description>
<author href="http://www.my_domain.com">
Its me
</author>
<!-- The two following lines make the difference! Important -->
<gap:plugin name="cordova-plugin-whitelist" source="npm"/>
<!-- In my esperience only * worked. Using the IP address (http://xxx.yy.qqq.tt or simply xxx.yy.qqq.tt) did not work -->
<access origin="*" subdomains="true" />
</widget>
压缩HTML文件,XML文件和JQuery.min.js,并使用您的帐户将包上传到build.phonegap.com。
希望我能帮助别人!