vue使用,問題

2022-08-18 22:18:14 字數 957 閱讀 4565

參考鏈結

[vue warn]: error in v-on handler: "typeerror: $form.postjson is not a function"

(found in )

warn @ vue.js:634

logerror @ vue.js:1893

globalhandleerror @ vue.js:1888

handleerror @ vue.js:1848

invokewitherrorhandling @ vue.js:1871

invoker @ vue.js:2188

#錯誤2

vue.js:1897 typeerror: $form.postjson is not a function

at vue.submit (fortest.html:94)

at invokewitherrorhandling (vue.js:1863)

at htmlformelement.invoker (vue.js:2188)

報錯**

var vms = new vue(,

methods: ;

$form.postjson('/api/authenticate', data, function (err, result)

});}

}});

應該是$form.postjson()中的資料寫法除了問題,參考

$(function () 

})})

更新:必須把這個寫進body裡的script裡的標籤裡,就算只有乙個vue也必須這樣,否則會未定義vue名,像下面這個自動提示時證明成功了

vue使用,問題

參考鏈結 vue warn error in v on handler typeerror form.postjson is not a function found in warn vue.js 634 logerror vue.js 1893 globalhandleerror vue.js 1...

vue使用問題彙總記錄

1.vue的樣式汙染 比如在home.vue檔案下面定義乙個樣式,style title style 那麼在login.vue檔案下面有標籤使用這個class title 也會有這個樣式 避免樣式汙染的方法 寫成 多加了個scoped,這樣,style標籤中的樣式的作用域就只是在此vue檔案了,就不...

vue中watch的使用問題

1 如果有change原生事件盡量用原生,不要用watch,畢竟watch只是封裝了一層,效能各方面不如原生方法。2 盡量不要watch陣列,如果非得監控陣列的變化,就設定乙個flag,陣列變flag變,watch對應的flag來處理。當前有兩個陣列 tempy label1 label2 labe...