关于response的处理问题
var image= response.imgaeconsole.log(image)
$('#image').val(image)
为什么只有这样才能获得图片路径?
console.log(response.imgae)
$('#image').val(response.imgae)
这样子只能得到 undefind
把全部代码发上来,不然我都不知道这response是哪来的{:10_277:} response对象存储的对象只能读取一次,读取一次之后,对象的实例就销毁了。所以需要用一个变量存储起来。
第二段代码,console.log 相当于已经读取一次了,所以下面在访问就不存在了
页:
[1]