Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

问个问题 Uncaught (in promise)

$
0
0

是这个样子的 vue+vue-resource+express组合 然后在下面这里遇到问题了

client

this.$http.jsonp('http://localhost:3300/register', { params: { name: this.name, password: this.password, repassword: this.repassword } }, {})
          .then(function (response) {
            console.log(response.data.state)
          })

server

app.get('/register', function (req, res) {     
            userTools.create(user).then(function(result){
                res.jsonp(result)
            }).catch(function(err){
                res.jsonp(data)
            })
    })

这样就会出错QQ截图20170314172016.png

如果server改为下面这样就不出包错了

app.get('/register', function (req, res) {     
     res.jsonp(data)
	 }

这是问什么啊?


Viewing all articles
Browse latest Browse all 14821

Trending Articles