小程序和后端初学者 这里是想实现wx.login获取code 传到服务器获取open id
但输出返回的res得到的 只是php的文本内容 为什么呢?
先确定本地php环境是否正常跑起来了
需要配置nginx 转发给 php-fpm 解析
如:
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;
include /etc/nginx__/__fastcgi_params;
}
可以先运行起php 再和小程序联调
PHP代码是要执行的,你是不是没有配置php-fpm啥的,没搞服务器环境