从 NSString 到 PHP 到 MySql 时如何处理回车?
我的 iPad 应用程序中有一个 UITextView。当用户向该视图输入数据时,我想使用我创建的 PHP 站点将其写入 mysql 数据库。当我将其提供给 php 站点时,我需要去掉回车符,但是有什么方法可以维护回车符吗?
I have a UITextView in my iPad app. When the user inputs data to this view, I want to write it to a mysql database, using a PHP site I created. I need to strip the carriage returns when I give it to the php site but is there some way to maintain the returns?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用中间变量:
这里它用空格替换 CRLF。
You could use a intermediate variable :
Here it replaces CRLF by space.
为什么你要在你的网址中放入这么多数据?请记住,url 长度有限制 - 您最好使用 POST。
但无论如何:您需要对数据进行 url 编码。谷歌表示这会起作用:
这将使 get 和 post 请求都安全。
Why do you put so much data in your url? Keep in mind that there's a limitation to url length - you'd better use POST.
But anyway: you need to url-encode the data. Google says this'll work:
This'll make it safe both for get and post requests.