我一直在這個問題上工作了幾個小時,現在它真的在吃我。當我使用Materialize/jQuery和VueJS的組合時,爲了進行選擇,然後嘗試選擇所需值,VueJS未更新以反映所選的新值。我認爲這是一個物化問題;但是,我無法獲得觸發VueJS更新/更改事件的值。jQuery和Materialise不更新VueJS選擇值
我有什麼是在下面的代碼片段。我所希望做的是隻是有選擇(或任何選擇更新VueJS適當的時候通過jQuery的更新。這是開始似乎是不可能的,儘管我知道更好。
$('select').material_select();
$(document).on('change', function(e){
\t $('#live').text("\n Using JUST jquery... Notice that the vue option remains unchanged\n" + JSON.stringify({ 'selectShouldBe': $(e.target).val()}, null, ' '));
});
new Vue({
el: '.container',
data: {
\t 'select':''
},
methods: {
\t updateThing: function(){
\t \t console.log(this);
\t }
},
})
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.css">
</head>
<body>
<div class="container">
<!-- here is the select in question -->
<select id='jurisdiction' v-model='select' @change="updateThing">
<option value disabled selected>Please select a value.</option>
<option value='1'>One</option>
<option value='2'>Two</option>
<option value='3'>Three</option>
<option value='4'>Four</option>
</select>
<!-- Print out the data, then pass it through json for easier readability. -->
<pre>
{{$data|json}}
<div id="live"></div>
</pre>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.12/vue.min.js"></script>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/js/materialize.min.js">
</script>
</body>
</html>
我會調整它只是一個smidgen,但現在這將工作。 :)謝謝湯姆 –