2

ノックアウト js でフォームを送信できません。

「ko.computed の値を返す関数を渡します。」というエラーが表示されます。

コードは次のとおりです。

 (function(records,$,undefined){
        records.models={
            student:function(data){
                var self=this;
            self.id=ko.observable(data.id);
            self.fname=ko.observable(data.fname);
            self.lname=ko.observable(data.lname);
            if(data.initial==='undefined'||data.initial===null){
                self.initial=ko.observable("");
            }else{
                self.initial=ko.observable(data.initial);
            }
            self.fullname=ko.computed(function(){
                return self.fname()+" "+" "+self.initial()+" "+self.lname();
            });
        },
        students_model:function(){
            var self=this;
            self.selectedStudent=ko.observable();
            self.students=ko.observableArray([]);
            getStudents();              

            self.save=function(){
                var form=$("#student-form");
                $.ajax({
                    type:"POST",
                    url:"/Student/create",
                    data:ko.toJSON(form[0]), //This line here is the exact point of failue
                    success:function(response){
                        records.general.handleSuccess(response);
                        if(response.status){
                            getStudents();
                        }       
                    }

                });
                return false;
            };
            function getStudents(){
                $.getJSON("/Student/data",function(result){
                    var mapped=$.map(result,function(item){
                        return new records.models.student(item);});
                    self.students(mapped);
                });
            }
        }
    };
    return records;
}(window.records=window.records||{},jQuery));

HTML

@using (Ajax.BeginForm("Create", "Student",
new AjaxOptions
{
    HttpMethod = "Post"
},
new { @class = "student-form", name = "student-form", id = "student-form" }))
{ 
<input type="text" data-bind="value:$root.fname" id="student.fname" name="student.fname" />
<input type="text" data-bind="value:$root.lname" id="student.lname" name="student.lname"/>
<input type="text" data-bind="value:$root.initial" id="student.initial" name="student.initial"/>
<input type="text" data-bind="value:$root.dob" id="dob" name="dob" />
<button data-bind="click:save">Save</button>
}

<script type="text/javascript">
ko.applyBindings(new records.models.students_model());
</script>

ここで何が間違っていますか?ここでこの質問を認識しています: ko.computed の値を返す関数を渡す しかし、その個人には別の問題があったようです。save メソッドで開始すると、コードが失敗します。具体的には次の行:

data:ko.toJSON(form[0])
4

1 に答える 1

4

ko.toJSONviewModel を渡すことを期待していますが、DOM から要素を渡しているため、エラーが発生します。

JavaScript オブジェクト (ビューモデルまたはビューモデルの一部) を に渡す必要がありますko.toJSON。たとえば、生徒の配列を送りたい場合は、次のようにします。

ko.toJSON(self.students);

あなたのフォームには$root.fname$root.lname$root.initial、および$root.dobにバインドされた入力がいくつかありますが、それらがビューモデルのどこに存在するかがわからないため、何を渡すかを正確に伝えることはできません。しかし、これを解決できる 1 つの方法の例を挙げることができます。

次のようなビューモデルがある場合:

var data = ...;
var vm = {
  newStudent : {
    fname : ko.observable(data.fname),
    lname: ko.observable(data.lname),
    initial: ko.observable(data.initial ?? ""),
    dob: ko.observable(data.dob)
  }
}

そして、これを呼び出して dom にバインドしました

ko.applyBindings(vm);

次に、次のように呼び出すことができますko.toJSON

...
data:ko.toJSON(vm.newStudent),
...
于 2013-05-03T14:46:05.623 に答える