我是新来的相控器。我开始看youtube连续剧,我第一次遇到问题。我的背景图片没有加载。我有这个js代码
/* global Phaser */
var game = new Phaser.Game(1200,600, Phaser.AUTO);
var GameState = {
preload : function(){
this.load.image('background','assets/images/background.png');
},
create: function() {
this
我试图从node.js获取图像(jpg文件),并将其显示在html标记(img)中,但图片没有显示(如您所见:)。
处理请求的我的node.js看起来:
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended : true}));
app.get('/pictureItem', function (req, res) {
// imagesNames[0].name - contains the name of the image to send (jpg file)
res.s
这里cakephp的图像上传工作很好,没有ajax.After使用ajax,数据是插入没有图像目录。
这是我的模型代码
public function processCoverUpload($check = array()) {
if (!is_uploaded_file($check['product_image']['tmp_name'])) {
return FALSE;
}
if (!move_uploaded_file($check['pro