如何使用backbonejs到php发布和获取?
下面是我的代码,一种是 ajax 方式,它工作正常,会发布并获取输出消息。但是我现在正在学习backbonejs,使用fetch() 获取和save() 发布是否正确?如何像ajax方式输出相同的结果?
谢谢。
php
<div class="con">
<?php
if($_POST){
// print_r($_POST);
print $_POST['name'];
}else{
print 'error';
}
?>
</div>
阿贾克斯
_
$.ajax({
type: "POST",
url: "inserts.php",
data: { name: "tim"}
}).done(function( msg ) {
var con = $(msg).filter('.con').html();
console.log(con);
});
输出 => 打印 $_POST['name'] =>tim
骨干js
Backbone.emulateHTTP = true;
Backbone.emulateJSON = true;
var Person = Backbone.Model.extend({
// defaults: {
// name: 'undefined',
// age: 'undefined'
// },
urlRoot: "inserts.php",
});
person = new Person({name:"tim"});
person.save();
更新
person.save({
success: function(model,response, options){
console.log('success'); => nothing output
=> and how to output 'tim' in console.log
},
error: function(model, xhr, options){
}
});