我遇到了一个问题,可以通过Cookie来解决,但是我想解决不使用Cookie的问题。我有一个名为app-header的组件,还有一个名为outmodal的组件。
现在,我的第一个Vue实例需要组件app-header。
var vue = new Vue({
el : "html",
data : {
title : "Site Title",
description : "description of page",
keywords : "my keywords",
view : "home",
login : "login"
},
components:{
"app-header" :require("../../components/header"),
"app-footer" :require("../../components/footer"),
"home" :require("../../views/home")
},
});
应用标题代码
var Vue = require("vue");
Vue.partial("login",require("../../partials/login.html"));
Vue.partial("logged",require("../../partials/logged.html"));
module.exports = {
template : require("./template.html"),
replace : true,
components : {
outmodal : require("../outmodal")
},
props : ['login']
}
模态代码
var Vue = require("vue");
Vue.partial("loginModal",require("../../partials/loginModal.html"));
module.exports = {
template : require("./template.html"),
replace : true,
props : ['name'],
data : function () {
return {
userLogin : { mail : "", password : "", remember : ""}
}
},
methods : {
formSubmit : function(e){
e.preventDefault();
this.$http.post("http://example.com/auth/login",{ "email": this.userLogin.mail , "password": this.userLogin.password },function(data,status,request){
$.cookie("site_token",data.token,{expires : 1})
}).error(function(data,status,request){
});
}
}, ready : function(){
console.log("it works")
}
}
在outmodal组件中,我连接了API并检查了登录名,如果登录成功,我想在Vue实例中更改login变量的值。我使用Web Pack构建所有需求。所以我不知道如何在这些文件之间进行数据绑定(bind)。
我该如何解决?一世
最佳答案
我发现的最佳解决方案
对于0.12
http://012.vuejs.org/guide/components.html#Inheriting_Parent_Scope
为1.0
http://v1.vuejs.org/guide/components.html#Parent-Child-Communication
为2.0
https://vuejs.org/v2/guide/components.html#Composing-Components(使用 Prop 将数据从父项单绑定(bind)到子项)
关于data-binding - 如何在Vue.js中进行父子孙之间的双向数据绑定(bind),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31781962/