angularJs中$scope数据序列化的实例

今天小编就为大家分享一篇angularJs中$scope数据序列化的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

如下所示:

<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <script src="https://www.jb51.net/angular.min.js"></script> <script src="https://www.jb51.net/jquery.min.js"></script> </head> <body> <div ng-app="module" ng-controller="ctrl"> <form method="post" action="ng.php"> 标题: <input type="text" ng-model="field.title"><br/> 点击数: <input type="text" ng-model="field.click"><br/> 内容: <input type="text" ng-model="field.content"><br/> <!--将提交的数据获取放到textarea里面--> <textarea></textarea> <input type="submit"> </form> </div> <script> var m = angular.module('module', []); m.controller('ctrl', ['$scope', function ($scope) { $scope.field = {title: '泠泠', click: 100,content:'泠泠在路上'}; $('form').submit(function () { $("[name='data']").val(angular.toJson($scope.field)); }); }]); </script> </body> </html>

ng.php

<?php //print_r($_POST); $data = json_decode($_POST['data'],true); var_dump($data);

以上这篇angularJs中$scope数据序列化的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/b79c73f865cc6024dd85f58f923ee577.html